Skip to content

Merge pull request #29 from Reokodoku/b-path #81

Merge pull request #29 from Reokodoku/b-path

Merge pull request #29 from Reokodoku/b-path #81

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
compile:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
- run: zig build
- run: zig build release
- run: zig build test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
- run: zig fmt --check src/*.zig