Skip to content

Commit

Permalink
ci: add nightly clippy job
Browse files Browse the repository at this point in the history
  • Loading branch information
cpu committed Dec 1, 2023
1 parent 1281025 commit e394492
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,18 @@ jobs:
with:
components: clippy
- run: cargo clippy --locked --all-features -- --deny warnings

clippy-nightly:
name: Clippy (Nightly)
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- run: cargo clippy --locked --all-features -- --deny warnings

0 comments on commit e394492

Please sign in to comment.