miri #21
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: miri | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Run at 6:30 AM UTC every Wednesday | |
| - cron: "30 6 * * 3" | |
| jobs: | |
| miri-test: | |
| name: miri (nightly) | |
| runs-on: ubuntu-latest | |
| env: | |
| MIRIFLAGS: "-Zmiri-disable-isolation" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - uses: ./.github/actions/toolchains/rust | |
| with: | |
| toolchain: nightly | |
| components: miri rust-src | |
| - name: Set up Miri | |
| run: cargo miri setup | |
| - name: Run Miri tests | |
| run: cargo miri test -p regorus | |
| - name: Run Miri ACI tests | |
| run: cargo miri test -p regorus --test aci | |
| - name: Run Miri kata tests | |
| run: cargo miri test -p regorus --test kata |