Skip to content

Commit fe75d6b

Browse files
committed
CI
1 parent 511794c commit fe75d6b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/main.yml

+6-4
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, 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
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

0 commit comments

Comments
 (0)