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

Piotr Osiewicz created

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

Change summary

.github/actions/run_tests/action.yml | 4 ----
1 file changed, 4 deletions(-)

Detailed changes

.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