Merge pull request #1951 from hamirmahal/ci/add-clippy-job-to-workflow

ci: add `clippy` job to `rust.yml` workflow
This commit is contained in:
Mo 2024-05-12 22:47:45 +02:00 committed by GitHub
commit c2414b8891
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,14 +2,19 @@ name: Rustlings Tests
on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy -- --deny warnings
fmt:
runs-on: ubuntu-latest
steps: