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 2ec151d commit 58ebf11Copy full SHA for 58ebf11
.github/workflows/ci.yml
@@ -16,6 +16,7 @@ jobs:
16
- test
17
- simd
18
- msrv
19
+ - miri
20
steps:
21
- run: exit 0
22
@@ -127,3 +128,22 @@ jobs:
127
128
uses: actions-rs/cargo@v1
129
with:
130
command: build
131
+
132
+ miri:
133
+ name: Test with Miri
134
+ runs-on: ubuntu-latest
135
136
+ steps:
137
+ - name: Checkout
138
+ uses: actions/checkout@v1
139
140
+ - name: Install Rust
141
+ uses: actions-rs/toolchain@v1
142
+ with:
143
+ profile: minimal
144
+ toolchain: nightly
145
+ components: miri
146
+ override: true
147
148
+ - name: Test
149
+ run: MIRIFLAGS="-Zmiri-tag-raw-pointers -Zmiri-check-number-validity" cargo miri test
0 commit comments