Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mina86 committed Aug 7, 2023
1 parent 1cbc5fa commit 474120d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,25 @@ jobs:
- name: Check formatting
run: cargo fmt --all --check

- name: Check bans etc.
- run cargo deny check advisories ban sources
- name: Check deny
- run: cargo deny check advisories ban sources

stable:
name: Tests on stable
name: Rust stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt

- name: Run tests
run: cargo test

nightly:
name: Tests on nightly
name: Rust nightly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -54,4 +55,4 @@ jobs:
run: cargo test

- name: Run tests with Miri
run: STRESS_TEST_ITERATIONS=5 cargo miri test
run: cargo miri test

0 comments on commit 474120d

Please sign in to comment.