Skip to content

Commit 79f972f

Browse files
committed
ci: improve clarity
1 parent 11e9d89 commit 79f972f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/_build-rust.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,12 @@ jobs:
8989
- name: Code Formatting
9090
if: inputs.do-style-check
9191
run: cargo fmt --all -- --check
92-
- name: Code Style and Doc Style
92+
- name: "Code style: clippy"
9393
if: inputs.do-style-check
94-
run: |
95-
cargo doc --no-deps --document-private-items --features ${{ inputs.features }} --no-default-features
96-
cargo clippy --all-targets --features ${{ inputs.features }} --no-default-features
94+
run: cargo clippy --all-targets --features ${{ inputs.features }} --no-default-features
95+
- name: "Code style: rustdoc"
96+
if: inputs.do-style-check
97+
run: cargo doc --no-deps --document-private-items --features ${{ inputs.features }} --no-default-features
9798
- name: Unit Test
9899
run: cargo test --verbose
99100
- name: Unit Test with Miri

0 commit comments

Comments
 (0)