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 43fe9a9
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,27 @@ jobs:
components: rustfmt

- name: Check formatting
run: cargo fmt --all --check
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: "STRESS_TEST_ITERATIONS=5 cargo miri test"

0 comments on commit 43fe9a9

Please sign in to comment.