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 0a9c8ad commit 60c9b46Copy full SHA for 60c9b46
.github/workflows/ci.yml
@@ -79,3 +79,19 @@ jobs:
79
80
- name: Check
81
run: cargo check --target wasm32-unknown-unknown
82
+
83
+ miri:
84
+ name: Miri
85
+ runs-on: ubuntu-latest
86
87
+ steps:
88
+ - name: Checkout
89
+ uses: actions/checkout@v3
90
91
+ - name: Install Rust
92
+ uses: dtolnay/rust-toolchain@nightly
93
+ with:
94
+ components: miri
95
96
+ - name: Test
97
+ run: MIRIFLAGS="-Zmiri-disable-isolation -Zmiri-ignore-leaks" cargo miri test
0 commit comments