Skip to content

Commit

Permalink
ci: improve clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Jan 1, 2025
1 parent 11e9d89 commit 79f972f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/_build-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 79f972f

Please sign in to comment.