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 9df999f commit 9f23b9aCopy full SHA for 9f23b9a
.github/workflows/_build-rust.yml
@@ -98,8 +98,9 @@ jobs:
98
run: cargo test --verbose
99
- name: Unit Test with Miri
100
if: inputs.do-miri
101
- # "--tests" so that the doctests are skipped. Currently, the doctest
102
- # in miri fails.
103
run: |
104
rustup component add miri
105
- cargo miri test --tests
+ # Run with stack-borrow model
+ cargo miri test
+ # Run with tree-borrow model
106
+ MIRIFLAGS=-Zmiri-tree-borrows cargo +nightly miri test
0 commit comments