From 5f37df103dc78e1f8342a92f9373bd14afbb6ccd Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Tue, 28 Apr 2020 16:02:12 +0200 Subject: [PATCH] fix clippy running in cd pipeline --- .github/workflows/cd.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'