Skip to content

Commit

Permalink
Use cargo-nextest in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mlafeldt committed Mar 6, 2024
1 parent acba34d commit d1ace77
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
workflow_dispatch: {}

env:
CARGO_TERM_COLOR: always
Expand All @@ -18,8 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@cargo-hack
- run: cargo fmt -- --check
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack,cargo-nextest
- run: cargo fmt --check
- run: cargo hack build --each-feature --all-targets
- run: cargo hack clippy --each-feature --all-targets -- -D warnings
- run: cargo hack test --each-feature
- run: cargo hack nextest run --each-feature

0 comments on commit d1ace77

Please sign in to comment.