From db22babe2a2c1d806d5f96a3d0758aa5416e025b Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Tue, 23 Jan 2024 22:18:17 +0100 Subject: [PATCH] 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 --- .github/actions/run_tests/action.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/actions/run_tests/action.yml b/.github/actions/run_tests/action.yml index af37af7fc4..4e6664a6fb 100644 --- a/.github/actions/run_tests/action.yml +++ b/.github/actions/run_tests/action.yml @@ -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