fix clippy running in cd pipeline

This commit is contained in:
Stephan Dilly 2020-04-28 16:02:12 +02:00
parent cbb1930fc2
commit 5f37df103d

View file

@ -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'