We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53fe1a3 commit 0d6e714Copy full SHA for 0d6e714
.github/workflows/ci.yml
@@ -273,3 +273,15 @@ jobs:
273
run: |
274
echo "Found AVX features: $CPU_FEATURE"
275
RUSTFLAGS="-Dwarnings -Ctarget-feature=$CPU_FEATURE" cargo test --all-targets --no-default-features ${{ matrix.features }}
276
+
277
+ miri:
278
+ runs-on: ubuntu-latest
279
+ steps:
280
+ - uses: actions/checkout@v2
281
+ - name: Setup Rust
282
+ run: |
283
+ rustup update nightly --no-self-update
284
+ rustup default nightly
285
+ rustup component add miri rust-src
286
+ - name: Test (Miri)
287
+ run: cargo miri test
0 commit comments