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

testing: Optimise CI time #887

Closed
wants to merge 14 commits into from
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ jobs:
toolchain: stable
override: true

- name: Install latest nextest release
uses: taiki-e/install-action@nextest

- name: Rust Cache
uses: Swatinem/rust-cache@6fd3edff6979b79f87531400ad694fb7f2c84b1f # v2.2.1

- name: Cargo test
uses: actions-rs/[email protected]
with:
command: test
args: --all-targets --workspace
run: cargo nextest run --workspace

clippy:
name: Cargo clippy
Expand Down
1 change: 1 addition & 0 deletions testing/integration-tests/src/utils/node_proc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ where
tracing::error!("{}", err);
return Err(err);
}

Ok(())
}

Expand Down