Skip to content

Commit

Permalink
Exclude other OS different than Linux in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgmbb committed Nov 10, 2023
1 parent 22243d2 commit aee9770
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ jobs:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest
]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
Expand All @@ -39,4 +37,7 @@ jobs:
- name: Zig environment variables
run: zig env
- name: Test
run: zig build test -Dall --summary all
run: |
zig build test -Dall --summary all
zig build run -- test/first/main.nat
nat/first

0 comments on commit aee9770

Please sign in to comment.