Skip to content

Commit

Permalink
Merge pull request #28 from filmil/test-on-presubmit
Browse files Browse the repository at this point in the history
feat: adds a presubmit test suite
  • Loading branch information
masukomi authored Jul 17, 2024
2 parents 5473615 + a4fbfe1 commit 91d426d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: "43 7 * * 0"
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
test:
strategy:
matrix:
runs-on: [ macos-latest ]
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v3
- if: matrix.runs-on == 'macos-latest'
run: "cd ./src && ./build.sh"

0 comments on commit 91d426d

Please sign in to comment.