fix(ci): install clippy component before running
Some checks failed
Lint and Build / lint-and-build (push) Failing after 42s

This commit is contained in:
goose 2026-03-13 10:53:01 -03:00
parent 868ebfd5ab
commit 360095289c

View file

@ -25,6 +25,10 @@ jobs:
apt-get update apt-get update
apt-get install -y pkg-config libssl-dev apt-get install -y pkg-config libssl-dev
- name: Install Rust components
run: |
rustup component add clippy
- name: Run Clippy - name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings run: cargo clippy --all-targets --all-features -- -D warnings