fix(ci): add rustup component install for clippy
Some checks failed
Lint, Build, and Docker / format (push) Successful in 44s
Lint, Build, and Docker / clippy (push) Failing after 45s
Lint, Build, and Docker / build (push) Has been skipped
Lint, Build, and Docker / docker-build (push) Has been skipped

- Add 'rustup component add clippy' to install clippy
- Missing component was causing clippy job to fail
- Both format and clippy jobs now install required components
This commit is contained in:
goose 2026-03-17 17:12:25 -03:00
parent ed2bb0c5e8
commit 739904979a

View file

@ -59,6 +59,7 @@ jobs:
run: | run: |
apt-get update apt-get update
apt-get install -y pkg-config libssl-dev apt-get install -y pkg-config libssl-dev
rustup component add clippy
- name: Run Clippy - name: Run Clippy
working-directory: ./backend working-directory: ./backend
@ -88,6 +89,7 @@ jobs:
run: | run: |
apt-get update apt-get update
apt-get install -y pkg-config libssl-dev apt-get install -y pkg-config libssl-dev
rustup component add clippy
- name: Build release binary - name: Build release binary
working-directory: ./backend working-directory: ./backend