Skip to content

Commit

Permalink
switch to non-nightly cargo clippy and fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Mydayyy committed Nov 26, 2024
1 parent e8f3a52 commit 91f1e3d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
components: rustfmt, clippy
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
components: rustfmt, clippy

- name: Run rust clippy
run: |
cargo +nightly clippy --all-targets --all-features
- name: Run rust clippy
run: |
cargo clippy --all-targets --all-features
- name: Run rust fmt
run: |
cargo +nightly fmt --check
- name: Run rust fmt
run: |
cargo fmt --check

0 comments on commit 91f1e3d

Please sign in to comment.