In updating build.zig I have forgotten that we need FTS support #108
Workflow file for this run
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: clerk tests | |
on: | |
push: | |
paths: | |
- src/** | |
- lib/** | |
- build.zig | |
- .github/workflows/test.yaml | |
jobs: | |
build: | |
strategy: | |
matrix: | |
target: [x86_64, aarch64] | |
os: [linux, macos, windows] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: 0.13.0 | |
- run: zig build -Dtarget=${{ matrix.target }}-${{ matrix.os }} | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: 0.13.0 | |
- run: zig build -Dtarget=${{ matrix.target }}-${{ matrix.os }} | |
- run: zig-out/bin/clerk | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: goto-bus-stop/setup-zig@v1 | |
with: | |
version: 0.13.0 | |
- run: zig fmt --check src/*.zig |