Skip to content

Commit

Permalink
GA: run tests with nextest
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Oct 16, 2024
1 parent b5c39f3 commit 42b0d27
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
with:
toolchain: ${{matrix.toolchain}}
- uses: Swatinem/rust-cache@v2
- name: Install cargo-nextest
run: cargo install cargo-nextest
- name: Test without default features
run: cargo test -r --no-default-features --workspace
run: cargo nextest run -r --no-default-features --workspace
- name: Test with default features
run: cargo test -r --workspace
run: cargo nextest run -r --workspace
- name: Test with all features
run: cargo test -r --all-features --workspace
run: cargo nextest run -r --all-features --workspace

build-cross:
needs: test
Expand Down

0 comments on commit 42b0d27

Please sign in to comment.