We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd75ff8 commit 28b3e6cCopy full SHA for 28b3e6c
.github/workflows/build.yml
@@ -1,11 +1,12 @@
1
-name: build
+name: build
2
on:
3
push:
4
pull_request:
5
branches: [ main ]
6
7
jobs:
8
- test:
+ build-examples:
9
+ name: Build Examples
10
strategy:
11
matrix:
12
os: [ubuntu-latest, macos-latest, windows-latest]
@@ -18,3 +19,19 @@ jobs:
18
19
version: 0.13.0
20
- name: Build all examples
21
run: zig build
22
+
23
+ run-tests:
24
+ name: Run Tests
25
+ needs: build-examples
26
+ strategy:
27
+ matrix:
28
+ os: [ubuntu-latest, macos-latest, windows-latest]
29
+ runs-on: ${{ matrix.os }}
30
31
+ steps:
32
+ - uses: actions/checkout@v2
33
+ - uses: goto-bus-stop/setup-zig@v2
34
+ with:
35
+ version: 0.13.0
36
+ - name: Build all examples
37
+ run: zig build test --summary all
.github/workflows/unit-test.yml
0 commit comments