diff options
author | Stephan Dilly <dilly.stephan@gmail.com> | 2020-04-28 16:02:12 +0200 |
---|---|---|
committer | Stephan Dilly <dilly.stephan@gmail.com> | 2020-04-28 16:02:12 +0200 |
commit | 5f37df103dc78e1f8342a92f9373bd14afbb6ccd (patch) | |
tree | 4bb1eb98029de4614850ed4a9c258487aa7bc6ce | |
parent | cbb1930fc29114ef544a697890d6a6c0a404afce (diff) |
fix clippy running in cd pipelinev0.1.12
-rw-r--r-- | .github/workflows/cd.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 9db59fa8..7cc2a83c 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -22,7 +22,9 @@ jobs: - name: Run tests run: make test - name: Run clippy - run: make clippy + run: | + rustup component add clippy + make clippy - name: Setup MUSL if: matrix.os == 'ubuntu-latest' |