From b959883872c2afd009b68c4c57563398e6dfc581 Mon Sep 17 00:00:00 2001 From: moznion Date: Sat, 12 Dec 2020 02:54:07 +0900 Subject: [PATCH] Fix GitHub Actions: install clippy manually --- .github/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f529bcc..7601a70 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,6 +14,8 @@ jobs: with: rust-version: ${{ matrix.rust }} - uses: actions/checkout@v2 + - name: install clippy + run: rustup component add clippy - name: Run checks run: make check