Skip to content

Commit

Permalink
run a few tests under miri
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz Borcherding committed Nov 28, 2024
1 parent db68f68 commit d852020
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
- run: cargo hack clippy --feature-powerset --exclude-features rustc-dep-of-std
- run: cargo hack test --feature-powerset --exclude-features rustc-dep-of-std

clippy-nightly:
name: clippy nightly
nightly-stuff:
name: nightly clippy, format and miri tests
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand All @@ -30,8 +30,11 @@ jobs:
- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
components: rustfmt, clippy, miri

- run: cargo +nightly fmt --all -- --check
- run: cargo +nightly clippy --no-default-features -- -D warnings
- run: cargo +nightly clippy -- -D warnings
- run: cargo +nightly clippy -- -D warnings
- run: cargo +nightly miri test ringbuffer
- run: cargo +nightly miri test short_Writer

0 comments on commit d852020

Please sign in to comment.