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.
2 parents 67ec907 + c65c66e commit a927f7cCopy full SHA for a927f7c
.github/workflows/ci.yml
@@ -51,6 +51,10 @@ jobs:
51
runs-on: ubuntu-latest
52
steps:
53
- uses: actions/checkout@v2
54
- - name: Miri
55
- run: ci/miri.sh
56
-
+ - name: Install Miri
+ run: |
+ rustup toolchain install nightly --component miri
57
+ rustup override set nightly
58
+ cargo miri setup
59
+ - name: Test with Miri
60
+ run: cargo miri test
ci/miri.sh
0 commit comments