Skip to content

Commit

Permalink
New attempt at fixing clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Schlegel committed Aug 6, 2023
1 parent 79e77a6 commit a514bee
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,21 @@ jobs:
- run: cargo test --verbose
- if: matrix.build == 'nightly'
run: cargo bench --verbose --no-run
- if: matrix.build != 'nightly'
run: cargo clippy --all-targets --all-features

clippy:
name: clippy
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Clippy check
run: cargo clippy --all-targets

rustfmt:
name: rustfmt
runs-on: ubuntu-22.04
Expand Down

0 comments on commit a514bee

Please sign in to comment.