Browse Source

ci: Remove use of actions-rs/clippy-check

actions-rs/clippy-check has been deprecated for a while, so just run
clippy directly. Note that this means lint annotations will no longer be
shown, but clippy errors can still be seen in the action output.
Nicholas Bishop 1 month ago
parent
commit
cb91645533
1 changed files with 1 additions and 5 deletions
  1. 1 5
      .github/workflows/ci.yml

+ 1 - 5
.github/workflows/ci.yml

@@ -43,10 +43,6 @@ jobs:
       - run: cargo test
       - run: cargo test
       - name: cargo build no_std
       - name: cargo build no_std
         run: cargo build --target thumbv7m-none-eabi --no-default-features
         run: cargo build --target thumbv7m-none-eabi --no-default-features
-      - name: cargo clippy
-        uses: actions-rs/clippy-check@v1
-        with:
-          token: ${{ secrets.GITHUB_TOKEN }}
-          args: --all-features
+      - run: cargo clippy --all-features
       - name: Ensure README.md is updated
       - name: Ensure README.md is updated
         run: '[ "$(< README.md)" = "$(cargo readme)" ]'
         run: '[ "$(< README.md)" = "$(cargo readme)" ]'