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.
miri
1 parent f0ad56b commit f8273afCopy full SHA for f8273af
.github/workflows/cmov.yml
@@ -121,3 +121,19 @@ jobs:
121
targets: ${{ matrix.target }}
122
- uses: RustCrypto/actions/cross-install@master
123
- run: cross test --target ${{ matrix.target }}
124
+
125
+ # Test using `cargo miri`
126
+ test-miri:
127
+ runs-on: ubuntu-latest
128
+ env:
129
+ MIRIFLAGS: "-Zmiri-symbolic-alignment-check -Zmiri-strict-provenance"
130
+ strategy:
131
+ matrix:
132
+ target:
133
+ - x86_64-unknown-linux-gnu
134
+ - s390x-unknown-linux-gnu
135
+ steps:
136
+ - uses: actions/checkout@v6
137
+ - uses: dtolnay/rust-toolchain@nightly
138
+ - run: rustup component add miri && cargo miri setup
139
+ - run: cargo miri test --target ${{ matrix.target }} --all-features --lib
0 commit comments