Skip to content

Commit

Permalink
ensure it actually builds and works in Miri
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed May 21, 2022
1 parent 4cabc22 commit 97abb04
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,16 @@ jobs:
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

miri:
name: Test Suite (Miri)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- name: Test with Miri
run: cargo miri test

0 comments on commit 97abb04

Please sign in to comment.