From 86d74b09b81ff7353c93990816213c08f30c595f Mon Sep 17 00:00:00 2001 From: Charlie Little Date: Thu, 27 May 2021 18:24:13 -0500 Subject: [PATCH 1/4] Fix CI error --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1b62860..10198958 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,8 @@ jobs: args: --verbose Coverage: - runs-on: ubuntu-latest steps: + runs-on: ubuntu-latest + steps: - name: Checkout uses: actions/checkout@v2 - name: Use Nightly From d947d70d9c47344b47bf4d73f27711df4faa4621 Mon Sep 17 00:00:00 2001 From: Charlie Little Date: Thu, 27 May 2021 18:40:09 -0500 Subject: [PATCH 2/4] Changes to ci --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10198958..1f8d3ba1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,12 +93,10 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: nightly - components: clippy override: true - name: Check uses: actions-rs/clippy-check@v1 with: - token: ${{ secrets.GITHUB_TOKEN }} args: --all-features Benches: @@ -110,7 +108,6 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: nightly - components: clippy override: true - name: Run Benches uses: actions-rs/cargo@v1 From b91ff869c9401a5db78997c995dbcb444959de67 Mon Sep 17 00:00:00 2001 From: Charlie Little Date: Thu, 27 May 2021 18:42:43 -0500 Subject: [PATCH 3/4] Add token to clippy job --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f8d3ba1..80f7f004 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,6 +97,7 @@ jobs: - name: Check uses: actions-rs/clippy-check@v1 with: + token: ${{ secrets.GITHUB_TOKEN }} args: --all-features Benches: From a808000ca5f81861edf6f8d3613e59fa18a96d69 Mon Sep 17 00:00:00 2001 From: Charlie Little Date: Thu, 27 May 2021 18:44:19 -0500 Subject: [PATCH 4/4] Add clippy to components --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80f7f004..1f2b26f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,6 +93,7 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: nightly + components: clippy override: true - name: Check uses: actions-rs/clippy-check@v1