Fix some doc comments that were out of date after the latest commit #1205
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . | |