Bump rupicola from 59751db to ac90d97
#4648
Workflow file for this run
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: Test Generated Zig | |
| on: | |
| push: | |
| pull_request: | |
| merge_group: | |
| schedule: | |
| - cron: "0 0 1 * *" | |
| jobs: | |
| test-zig: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Install Zig | |
| uses: mlugg/setup-zig@v1 | |
| with: | |
| version: 0.14.0 | |
| - uses: actions/checkout@v4 | |
| - name: Test Zig files | |
| run: (cd fiat-zig && zig build && zig build test) | |
| - name: Test Zig field inversion example | |
| run: (cp fiat-zig/src/p256_64.zig inversion/zig && cd inversion/zig && zig build test) |