We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5fa844e + 6bf8e48 commit 07bcc57Copy full SHA for 07bcc57
1 file changed
.github/workflows/ci.yml
@@ -45,6 +45,18 @@ jobs:
45
components: rustfmt
46
- run: cargo fmt --all --check
47
48
+ miri:
49
+ name: Miri
50
+ runs-on: ubuntu-latest
51
+ steps:
52
+ - uses: actions/checkout@v4
53
+ - uses: dtolnay/rust-toolchain@nightly
54
+ with:
55
+ components: miri
56
+ - run: cargo miri setup
57
+ - run: cargo miri test --features alloc,mmio,pci,zerocopy
58
+ - run: cargo miri test --all-features
59
+
60
test:
61
name: Test
62
runs-on: ubuntu-latest
0 commit comments