Skip to content

Commit

Permalink
add nextest to post-merge ci
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Feb 15, 2022
1 parent 3486eda commit de62e8b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci-post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,34 @@ jobs:
# - name: Upload to Codecov
# uses: codecov/codecov-action@v1
# with: { file: cobertura.xml }

nextest:
name: nextest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with: { command: generate-lockfile }
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1.3.0

- name: Install cargo-nextest
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-nextest

- name: Test with cargo-nextest
uses: actions-rs/cargo@v1
with:
command: nextest
args: run

0 comments on commit de62e8b

Please sign in to comment.