fix(ci): add rustup component install for clippy
- 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:
parent
ed2bb0c5e8
commit
739904979a
1 changed files with 2 additions and 0 deletions
|
|
@ -59,6 +59,7 @@ jobs:
|
|||
run: |
|
||||
apt-get update
|
||||
apt-get install -y pkg-config libssl-dev
|
||||
rustup component add clippy
|
||||
|
||||
- name: Run Clippy
|
||||
working-directory: ./backend
|
||||
|
|
@ -88,6 +89,7 @@ jobs:
|
|||
run: |
|
||||
apt-get update
|
||||
apt-get install -y pkg-config libssl-dev
|
||||
rustup component add clippy
|
||||
|
||||
- name: Build release binary
|
||||
working-directory: ./backend
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue