From 92f2d2377816b0b1fc0213fa49c6ca3afc687ce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Gardstr=C3=B6m?= Date: Sun, 27 Aug 2023 15:39:47 +0200 Subject: [PATCH] make it so that xtask isn't needed on msrv check --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2e9c745..21d9a979 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: toolchain: ${{ matrix.rust || env.MSRV }} - uses: Swatinem/rust-cache@v2 - name: Test twitch_types - run: cargo test --all-targets --all-features --workspace + run: cargo test --all-targets --all-features ${{matrix.rust == 'nightly' && '--workspace'}} fmt: name: Rustfmt runs-on: ubuntu-latest