CI: Do not run cargo check --tests before running the tests (#4228)

This is a bit redundant, as cargo test does not reuse results of cargo
check, so we're essentially doing the cargo check unnecessarily.

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-01-23 22:18:17 +01:00 committed by GitHub
parent 2d7d07173d
commit db22babe2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,10 +18,6 @@ runs:
shell: bash -euxo pipefail {0}
run: script/clear-target-dir-if-larger-than 100
- name: Run check
shell: bash -euxo pipefail {0}
run: cargo check --tests --workspace
- name: Run tests
shell: bash -euxo pipefail {0}
run: cargo nextest run --workspace --no-fail-fast