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 3f3f6b2 commit ec86094Copy full SHA for ec86094
.github/workflows/main.yml
@@ -15,7 +15,7 @@ jobs:
15
strategy:
16
fail-fast: false
17
matrix:
18
- os: [ubuntu-latest, macos-latest, windows-latest]
+ os: [ubuntu-latest, windows-latest, macos-latest]
19
runs-on: ${{matrix.os}}
20
steps:
21
- name: Checkout repository
@@ -29,6 +29,8 @@ jobs:
29
uses: mlugg/setup-zig@v1
30
with:
31
version: ${{ steps.zigversion.outputs.content }}
32
- - name: Build and test
33
- run: zig fmt --check . && zig build && zig build test
34
-
+ - name: Check format
+ continue-on-error: true
+ run: zig fmt --check .
35
+ - name: Build and run tests
36
+ run: zig build test
.zigversion
@@ -1 +1 @@
1
-0.13.0-dev.351+64ef45eb0
+0.14.0-dev.1911+3bf89f55c
0 commit comments