Skip to content

Commit ec86094

Browse files
committed
CI
1 parent 3f3f6b2 commit ec86094

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-latest, macos-latest, windows-latest]
18+
os: [ubuntu-latest, windows-latest, macos-latest]
1919
runs-on: ${{matrix.os}}
2020
steps:
2121
- name: Checkout repository
@@ -29,6 +29,8 @@ jobs:
2929
uses: mlugg/setup-zig@v1
3030
with:
3131
version: ${{ steps.zigversion.outputs.content }}
32-
- name: Build and test
33-
run: zig fmt --check . && zig build && zig build test
34-
32+
- name: Check format
33+
continue-on-error: true
34+
run: zig fmt --check .
35+
- name: Build and run tests
36+
run: zig build test

.zigversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.0-dev.351+64ef45eb0
1+
0.14.0-dev.1911+3bf89f55c

0 commit comments

Comments
 (0)