Skip to content

Commit 91d426d

Browse files
authored
Merge pull request #28 from filmil/test-on-presubmit
feat: adds a presubmit test suite
2 parents 5473615 + a4fbfe1 commit 91d426d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
schedule:
9+
- cron: "43 7 * * 0"
10+
concurrency:
11+
group: ${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
test:
16+
strategy:
17+
matrix:
18+
runs-on: [ macos-latest ]
19+
runs-on: ${{ matrix.runs-on }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- if: matrix.runs-on == 'macos-latest'
23+
run: "cd ./src && ./build.sh"

0 commit comments

Comments
 (0)