diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 0451fd7..f6fece1 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -8,11 +8,14 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: https://github.com/mlugg/setup-zig@v1.2.1 + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Zig + uses: https://github.com/mlugg/setup-zig@v1.2.1 with: version: 0.14.0 - - uses: https://github.com/elerch/zig-action-cache@v1.1.6 + - name: Restore Zig global cache + uses: https://github.com/elerch/zig-action-cache@v1.1.6 - name: Build project run: zig build --summary all - name: Run tests