We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9bd3c commit d9de096Copy full SHA for d9de096
.github/workflows/workflow.yml
@@ -41,11 +41,9 @@ jobs:
41
version: latest
42
43
- name: Run rust-clippy
44
- run:
45
- cargo clippy
46
- --target riscv64imac-unknown-none-elf
47
- --package fast-trap
48
- --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
+ run: |
+ cargo clippy -p fast-trap --target riscv64imac-unknown-none-elf --features riscv-m --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
+ cargo clippy -p fast-trap --target riscv64imac-unknown-none-elf --features riscv-s --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
49
continue-on-error: true
50
51
- name: Upload analysis results to GitHub
0 commit comments