Skip to content

Commit 659e82a

Browse files
committed
Use action for clippy
1 parent 3018ae6 commit 659e82a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ jobs:
3535
run: cargo fmt -- --check
3636

3737
- name: Clippy
38-
run: cargo clippy --workspace --all-features --all-targets -- -D warnings
38+
uses: actions-rs/clippy-check@v1
39+
with:
40+
token: ${{ github.token }}
41+
args: --workspace --all-features --all-targets -- -D warnings
3942

4043
build:
4144
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)