Skip to content

Looks like this will work #105

Looks like this will work

Looks like this will work #105

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 }}
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