Skip to content

Commit 4452c16

Browse files
committed
ci: update clippy workflow to include toolchain setup and version checks
1 parent 43250ef commit 4452c16

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/clippy.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v3
17-
- name: Rust setup
18-
uses: ./.github/actions/rust/setup
17+
- name: Update local toolchain
18+
run: |
19+
rustup update
20+
rustup component add clippy
21+
- name: Toolchain info
22+
run: |
23+
cargo --version --verbose
24+
rustc --version
25+
cargo clippy --version
1926
2027
- name: Check formatting
2128
run: cargo fmt -- --check

0 commit comments

Comments
 (0)