Skip to content

Merge pull request #49 from Reokodoku/man-fixes #115

Merge pull request #49 from Reokodoku/man-fixes

Merge pull request #49 from Reokodoku/man-fixes #115

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