You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
279 B

2 years ago
  1. name: Clippy check
  2. on: [push, pull_request]
  3. jobs:
  4. clippy_check:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v1
  8. - run: rustup component add clippy
  9. - uses: actions-rs/clippy-check@v1
  10. with:
  11. token: ${{ secrets.GITHUB_TOKEN }}