0.15.0 #49
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: mlugg/setup-zig@v1 | |
with: | |
version: 0.15.0 | |
- run: | | |
zig build test | |
zig build -Dtarget=x86-windows-gnu test | |
test-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: mlugg/setup-zig@v2 | |
with: | |
version: 0.15.0 | |
# Note that there's no testing for 32-bit on macos since offical support has been dropped | |
- run: | | |
zig build test | |
test-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: mlugg/setup-zig@v1 | |
with: | |
version: 0.15.0 | |
- run: | | |
zig build test | |
zig build -Dtarget=x86-linux-gnu test |