Skip to content

Commit d852020

Browse files
author
Moritz Borcherding
committed
run a few tests under miri
1 parent db68f68 commit d852020

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
- run: cargo hack clippy --feature-powerset --exclude-features rustc-dep-of-std
2121
- run: cargo hack test --feature-powerset --exclude-features rustc-dep-of-std
2222

23-
clippy-nightly:
24-
name: clippy nightly
23+
nightly-stuff:
24+
name: nightly clippy, format and miri tests
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout sources
@@ -30,8 +30,11 @@ jobs:
3030
- name: Install nightly toolchain
3131
uses: dtolnay/rust-toolchain@nightly
3232
with:
33-
components: rustfmt, clippy
33+
components: rustfmt, clippy, miri
3434

3535
- run: cargo +nightly fmt --all -- --check
3636
- run: cargo +nightly clippy --no-default-features -- -D warnings
37-
- run: cargo +nightly clippy -- -D warnings
37+
- run: cargo +nightly clippy -- -D warnings
38+
- run: cargo +nightly miri test ringbuffer
39+
- run: cargo +nightly miri test short_Writer
40+

0 commit comments

Comments
 (0)