Update within() to make caching optional #89
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: CI | |
| on: [push] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-24.04-arm | |
| - os: ubuntu-latest | |
| - os: macos-latest | |
| - os: macos-15-intel | |
| - os: windows-11-arm | |
| - os: windows-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: mlugg/setup-zig@v2 | |
| - name: Fetch test-data | |
| run: git submodule update --init | |
| - name: Run tests | |
| run: zig build test | |
| - name: Run lookup example | |
| run: zig build example_lookup | |
| - name: Run within example | |
| run: zig build example_within | |
| - name: Run inspect example | |
| run: zig build example_inspect |