Skip to content

Commit 77105cf

Browse files
authored
ci: add miri job
This is particularly useful given some of the recent bugs caught by Miri. PR #127
1 parent 2b1bd05 commit 77105cf

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,15 @@ jobs:
101101
working-directory: ./bench
102102
run: |
103103
cargo fmt -- --check
104+
105+
miri:
106+
name: miri
107+
runs-on: ubuntu-22.04
108+
steps:
109+
- name: Checkout repository
110+
uses: actions/checkout@v3
111+
- name: Install Rust
112+
uses: dtolnay/rust-toolchain@miri
113+
- run: cargo miri test --lib --verbose
114+
env:
115+
MIRIFLAGS: -Zmiri-strict-provenance

0 commit comments

Comments
 (0)