Skip to content

Commit

Permalink
chore(ci): use cargo-nextest for faster testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sotirangelo committed Jul 8, 2024
1 parent e3713d1 commit 72de56f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,20 @@ env:
CARGO_TERM_COLOR: always

jobs:
test:
name: Test
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build
- name: Doctests
run: cargo test --doc
- uses: taiki-e/install-action@nextest
- name: Run tests
run: cargo test
run: cargo nextest run

fmt:
name: Rustfmt
Expand Down

0 comments on commit 72de56f

Please sign in to comment.