diff options
| author | mo8it <mo8it@proton.me> | 2024-06-27 11:30:42 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-06-27 11:30:42 +0200 |
| commit | 92f249a52ca993d65db6ed70b85535c2f1720ec3 (patch) | |
| tree | fa3d6174d0d54679fa8218efeb9dda079c831c28 /.github/workflows | |
| parent | 789223cc9e247eb9da90698b1c3011c26cdc863c (diff) | |
| parent | e6228e92b4df766bddb8524ed42d66690348f100 (diff) | |
Merge branch 'main'
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 226d413..689d05e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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: |
