Bump rewriter from 1ce9f1a
to 76973c4
#4276
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: | |
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: goto-bus-stop/setup-zig@v2 | |
with: | |
version: 0.13.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) |