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'