Skip to content

Fix some doc comments that were out of date after the latest commit #1205

Fix some doc comments that were out of date after the latest commit

Fix some doc comments that were out of date after the latest commit #1205

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
jobs:
test:
strategy:
matrix:
optimize: [Debug, ReleaseSafe, ReleaseFast, ReleaseSmall]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: mlugg/setup-zig@v1
with:
version: master
- run: zig build test -Doptimize=${{ matrix.optimize }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v1
with:
version: master
- run: zig fmt --check .