clippy.yaml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. on:
  2. push:
  3. branches: [ staging, trying, 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. cargo_flags:
  15. - "--no-default-features"
  16. - "--all-features"
  17. include:
  18. # Nightly is only for reference and allowed to fail
  19. - toolchain: nightly
  20. experimental: true
  21. runs-on: ubuntu-latest
  22. continue-on-error: ${{ matrix.experimental || false }}
  23. steps:
  24. - uses: actions/checkout@v3
  25. - uses: dtolnay/rust-toolchain@master
  26. with:
  27. toolchain: ${{ matrix.toolchain }}
  28. components: clippy
  29. - name: Run clippy
  30. run: cargo clippy --all ${{ matrix.cargo_flags }} -- -D warnings
  31. # Job to check that all the lint checks succeeded
  32. clippy-check:
  33. needs:
  34. - clippy
  35. runs-on: ubuntu-latest
  36. if: always()
  37. steps:
  38. - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'