Skip to content

In updating build.zig I have forgotten that we need FTS support #108

In updating build.zig I have forgotten that we need FTS support

In updating build.zig I have forgotten that we need FTS support #108

Workflow file for this run

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