From a76482a50c548f5828ad8281ea299e322c5a776d Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Fri, 22 Jan 2021 16:25:44 +1100 Subject: [PATCH] Build tests first to reduce output on the test step --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90dc2eb3..4a025e96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -100,6 +100,9 @@ jobs: - name: Cargo check all features run: cargo check --workspace --all-targets --all-features + - name: Build tests + run: cargo build --tests --workspace --all-features + - name: Cargo test if: (!matrix.skip_tests) run: cargo test --workspace --all-features