CLI Nightly Zig Check #39
This file contains hidden or 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: CLI Nightly Zig Check | |
| on: | |
| workflow_dispatch: | |
| # Run nightly at 3 AM UTC | |
| schedule: | |
| - cron: "0 3 * * *" | |
| jobs: | |
| build-latest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Zig (latest dev build) | |
| uses: goto-bus-stop/setup-zig@v2 | |
| with: | |
| version: master | |
| - name: Build | |
| run: zig build | |
| - name: Run Tests | |
| run: zig build test |