Skip to content

Commit

Permalink
Run tests with Miri instead
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyvion committed Mar 28, 2023
1 parent 1188b89 commit 18487f3
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,15 @@ jobs:
uses: actions/checkout@v3

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- name: Build
run: cargo build
uses: dtolnay/rust-toolchain@nightly

- name: Test
run: cargo test

- name: Build (all features)
run: cargo build --all-features
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
cargo miri setup
- name: Test (all features)
run: cargo test --all-features
- name: Test with Miri
run: cargo miri test --all-features

deploy_docs:
name: Deploy documentation
Expand Down

0 comments on commit 18487f3

Please sign in to comment.