mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
fix clippy running in cd pipeline
This commit is contained in:
parent
cbb1930fc2
commit
5f37df103d
1 changed files with 3 additions and 1 deletions
4
.github/workflows/cd.yml
vendored
4
.github/workflows/cd.yml
vendored
|
|
@ -22,7 +22,9 @@ jobs:
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make test
|
run: make test
|
||||||
- name: Run clippy
|
- name: Run clippy
|
||||||
run: make clippy
|
run: |
|
||||||
|
rustup component add clippy
|
||||||
|
make clippy
|
||||||
|
|
||||||
- name: Setup MUSL
|
- name: Setup MUSL
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue