From 39bcd5e83baad3a6757e0a84ae124bb7f2334566 Mon Sep 17 00:00:00 2001 From: veeso Date: Fri, 26 Mar 2021 20:42:13 +0100 Subject: [PATCH] From now on cargo fmt must pass the tests --- .github/workflows/linux.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 71f0b0d..1124027 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -24,6 +24,8 @@ jobs: CARGO_INCREMENTAL: "0" RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests" RUSTDOCFLAGS: "-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests" + - name: Format + run: cargo fmt --all -- --check - name: Clippy run: cargo clippy - name: Coverage with grcov