Skip to content

Fix a minor bug in two previous commits #48

Fix a minor bug in two previous commits

Fix a minor bug in two previous commits #48

Workflow file for this run

name: Core test run and format check
on: push
jobs:
test-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: goto-bus-stop/setup-zig@v2
- run: cd core && zig build test
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: goto-bus-stop/setup-zig@v2
- run: cd core && zig fmt --check src/*.zig