Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace cargo-nextest with cargo-test for running tests #802

Merged
merged 1 commit into from
Jun 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 15 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,17 +105,14 @@ jobs:
toolchain: stable
override: true

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-nextest
version: 0.9

- name: Rust Cache
uses: Swatinem/rust-cache@v1.4.0

- name: Cargo nextest
run: cargo nextest run --workspace
- name: Cargo test
uses: actions-rs/cargo@v1.0.3
with:
command: test
args: --workspace

tests_macos:
name: Run tests macos
Expand All @@ -131,17 +128,14 @@ jobs:
toolchain: stable
override: true

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-nextest
version: 0.9

- name: Rust Cache
uses: Swatinem/rust-cache@v1.4.0

- name: Cargo nextest
run: cargo nextest run --workspace
- name: Cargo test
uses: actions-rs/cargo@v1.0.3
with:
command: test
args: --workspace

tests_windows:
name: Run tests Windows
Expand All @@ -157,17 +151,14 @@ jobs:
toolchain: stable
override: true

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-nextest
version: 0.9

- name: Rust Cache
uses: Swatinem/rust-cache@v1.4.0

- name: Cargo nextest
run: cargo nextest run --workspace
- name: Cargo test
uses: actions-rs/cargo@v1.0.3
with:
command: test
args: --workspace

wasm_tests:
name: Test wasm
Expand Down