diff --git a/.github/workflows/lints.yml b/.github/workflows/lints.yml index cda34f8..48baaa4 100644 --- a/.github/workflows/lints.yml +++ b/.github/workflows/lints.yml @@ -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