From 33882f9b2825bccf29753a5dd25950214f60eda8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Er=C3=A8be=20-=20Romain=20Gerard?= Date: Fri, 25 Mar 2022 13:59:49 +0100 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dbcecd2a..1dae69a1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,6 +23,11 @@ jobs: terraform_version: 0.14.10 - name: build-linter-utests run: | + echo "########## LINTER ##########" + cargo fmt --all -- --check --color=always || (echo "Use cargo fmt to format your code"; exit 1) + rustup component add clippy + cargo clippy --all --all-features --lib || (echo "Solve your clippy warnings to continue"; exit 1) + export PATH=$GITHUB_WORKSPACE/bin:$PATH export RUSTC_WRAPPER=$GITHUB_WORKSPACE/bin/sccache export SCCACHE_REDIS=${{ secrets.SCCACHE_REDIS }} @@ -34,10 +39,6 @@ jobs: echo "########## SHARED CACHE STATUS ##########" sccache --version sccache --show-stats - echo "########## LINTER ##########" - cargo fmt --all -- --check --color=always || (echo "Use cargo fmt to format your code"; exit 1) - rustup component add clippy - cargo clippy --all --all-features --lib || (echo "Solve your clippy warnings to continue"; exit 1) echo "########## START BUILD ##########" cargo build --all-features sccache --show-stats