clippy.yaml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. run: cargo clippy --all --all-features -- -D warnings
  30. # Additonal clippy checks for riscv-rt
  31. clippy-riscv-rt:
  32. strategy:
  33. matrix:
  34. toolchain: [ stable, nightly ]
  35. runs-on: ubuntu-latest
  36. continue-on-error: ${{ matrix.experimental || false }}
  37. steps:
  38. - uses: actions/checkout@v4
  39. - uses: dtolnay/rust-toolchain@master
  40. with:
  41. toolchain: ${{ matrix.toolchain }}
  42. components: clippy
  43. - name: Run clippy (s-mode)
  44. run: cargo clippy --package riscv-rt --all --features=s-mode -- -D warnings
  45. - name: Run clippy (single-hart)
  46. run: cargo clippy --package riscv-rt --all --features=single-hart -- -D warnings
  47. # Job to check that all the lint checks succeeded
  48. clippy-check:
  49. needs:
  50. - clippy
  51. - clippy-riscv-rt
  52. runs-on: ubuntu-latest
  53. if: always()
  54. steps:
  55. - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'