clippy.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. on:
  2. push:
  3. branches: [ master ]
  4. pull_request:
  5. merge_group:
  6. name: Lints compliance check
  7. env:
  8. CLIPPY_PARAMS: -W clippy::all -W clippy::pedantic -W clippy::nursery -W clippy::cargo
  9. jobs:
  10. clippy:
  11. strategy:
  12. matrix:
  13. toolchain: [ stable, nightly ]
  14. include:
  15. # Nightly is only for reference and allowed to fail
  16. - toolchain: nightly
  17. experimental: true
  18. runs-on: ubuntu-latest
  19. continue-on-error: ${{ matrix.experimental || false }}
  20. steps:
  21. - uses: actions/checkout@v4
  22. - uses: dtolnay/rust-toolchain@master
  23. with:
  24. toolchain: ${{ matrix.toolchain }}
  25. components: clippy
  26. - name: Run clippy (no features)
  27. run: cargo clippy --all --no-default-features -- -D warnings
  28. - name: Run clippy (all features)
  29. # We exclude riscv-peripheral because it's not yet stable-compliant
  30. run: cargo clippy --exclude riscv-peripheral --all --all-features -- -D warnings
  31. # Additonal clippy checks for riscv-rt
  32. clippy-riscv-rt:
  33. strategy:
  34. matrix:
  35. toolchain: [ stable, nightly ]
  36. runs-on: ubuntu-latest
  37. continue-on-error: ${{ matrix.experimental || false }}
  38. steps:
  39. - uses: actions/checkout@v4
  40. - uses: dtolnay/rust-toolchain@master
  41. with:
  42. toolchain: ${{ matrix.toolchain }}
  43. components: clippy
  44. - name: Run clippy (s-mode)
  45. run: cargo clippy --package riscv-rt --all --features=s-mode -- -D warnings
  46. - name: Run clippy (single-hart)
  47. run: cargo clippy --package riscv-rt --all --features=single-hart -- -D warnings
  48. # Job to check that all the lint checks succeeded
  49. clippy-check:
  50. needs:
  51. - clippy
  52. - clippy-riscv-rt
  53. runs-on: ubuntu-latest
  54. if: always()
  55. steps:
  56. - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'