Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
zig-version: ["0.14.1"]
zig-version: ["0.14.1", "master"]
os: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.os }}
Expand All @@ -27,8 +27,8 @@ jobs:
- name: Build
run: zig build --summary all

- name: Run tests
run: zig build test --summary all

- name: Build & Run example tests
run: cd example && zig build test --summary all

- name: Run tests
run: zig build test --summary all
Loading