From 79f972fd5d65665c3f236b89414f1e43ec5f29cc Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Wed, 1 Jan 2025 22:38:49 +0100 Subject: [PATCH] ci: improve clarity --- .github/workflows/_build-rust.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_build-rust.yml b/.github/workflows/_build-rust.yml index d855a822..2d617544 100644 --- a/.github/workflows/_build-rust.yml +++ b/.github/workflows/_build-rust.yml @@ -89,11 +89,12 @@ jobs: - name: Code Formatting if: inputs.do-style-check run: cargo fmt --all -- --check - - name: Code Style and Doc Style + - name: "Code style: clippy" if: inputs.do-style-check - run: | - cargo doc --no-deps --document-private-items --features ${{ inputs.features }} --no-default-features - cargo clippy --all-targets --features ${{ inputs.features }} --no-default-features + run: cargo clippy --all-targets --features ${{ inputs.features }} --no-default-features + - name: "Code style: rustdoc" + if: inputs.do-style-check + run: cargo doc --no-deps --document-private-items --features ${{ inputs.features }} --no-default-features - name: Unit Test run: cargo test --verbose - name: Unit Test with Miri