From dbf69664b988b20bdc31eaa47bf9b8b540814267 Mon Sep 17 00:00:00 2001 From: Jordan Rose Date: Wed, 25 Oct 2023 16:37:06 -0700 Subject: [PATCH] Fix GitHub CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff93234..b29395c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: rustup toolchain default ${{ matrix.rust }} --profile minimal + - run: rustup toolchain install ${{ matrix.rust }} --profile minimal && rustup default ${{ matrix.rust }} - run: cargo test --workspace --all-features clippy: @@ -25,4 +25,4 @@ jobs: # Default to latest stable as installed on the runners. # This does mean there may be updates that break this job at some point. - run: cargo fmt --all -- --check - - run: cargo clippy --workspace --all-targets --all-features -- -D warning + - run: cargo clippy --workspace --all-targets --all-features -- -D warnings