README: link to canonical source. #790
This file contains 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: Zig | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-nix: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v4 | |
- name: Run the Magic Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- run: nix build -L | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: 0.11.0 | |
- run: c:; cd \vcpkg; git pull; .\bootstrap-vcpkg.bat | |
- run: vcpkg integrate install | |
- run: vcpkg install pcre --triplet x64-windows-static | |
- run: zig build -Dtarget=x86_64-windows-msvc | |
- run: zig build -Dtarget=x86_64-windows-msvc test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v4 | |
- name: Run the Magic Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- run: nix develop --command zig fmt --check src/*.zig |