Skip to content

Commit

Permalink
add miri testing in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SamClercky authored and thvdveld committed Feb 29, 2024
1 parent 6a17072 commit e426fb9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,22 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
cargo +nightly miri setup
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run Miri on sync
run: cargo +nightly miri test -p dot15d4 sync

clippy:

runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit e426fb9

Please sign in to comment.