File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -89,11 +89,12 @@ jobs:
89
89
- name : Code Formatting
90
90
if : inputs.do-style-check
91
91
run : cargo fmt --all -- --check
92
- - name : Code Style and Doc Style
92
+ - name : " Code style: clippy "
93
93
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
97
98
- name : Unit Test
98
99
run : cargo test --verbose
99
100
- name : Unit Test with Miri
You can’t perform that action at this time.
0 commit comments