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 1633903 commit c8a8721Copy full SHA for c8a8721
.github/workflows/rust.yml
@@ -157,6 +157,23 @@ jobs:
157
- name: Run cargo doc
158
run: cargo xtask doc --warnings-as-errors
159
160
+ miri:
161
+ name: Run unit tests and doctests under Miri
162
+ runs-on: ubuntu-latest
163
+ steps:
164
+ - name: Checkout sources
165
+ uses: actions/checkout@v2
166
+
167
+ - name: Install latest nightly toolchain that includes Miri
168
+ uses: actions-rs/toolchain@v1
169
+ with:
170
+ profile: minimal
171
+ toolchain: nightly
172
+ components: miri
173
174
+ - name: Run miri
175
+ run: cargo xtask miri
176
177
# This job tests that the template app builds successfully with the
178
# released versions of the libraries on crates.io.
179
#
0 commit comments