Skip to content

Commit

Permalink
add miri test workflow action
Browse files Browse the repository at this point in the history
  • Loading branch information
starkat99 committed Jun 21, 2022
1 parent 624b1d7 commit 10990cc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,23 @@ jobs:
with:
command: make
args: ci-flow
miri:
name: Miri
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: miri
- name: Run Miri
uses: actions-rs/cargo@v1
with:
command: miri
args: test
env:
MIRIFLAGS: -Zmiri-strict-provenance

0 comments on commit 10990cc

Please sign in to comment.