Bump rewriter from 2f9a755
to 5b13cd7
#3218
Workflow file for this run
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: Test Generated Zig | |
on: | |
push: | |
pull_request: | |
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: goto-bus-stop/setup-zig@v2 | |
with: | |
version: master | |
- 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) |