From 9ed7f63a8a7aaa1233891700c7d86c9a7e3a3c9c Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Fri, 26 Jan 2024 17:35:01 +0100 Subject: [PATCH] Don't run cargo check on windows/mac CI --- .github/workflows/test.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 754648b..ed9d4b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,12 +63,9 @@ jobs: uses: taiki-e/install-action@v2 with: tool: nextest - - name: Run cargo check - run: | - cargo check --all-targets --all-features - name: Run cargo nextest run: | - cargo nextest run --profile ci + cargo nextest run --profile ci --all-features test-macos: runs-on: macos-12 env: @@ -89,9 +86,6 @@ jobs: uses: taiki-e/install-action@v2 with: tool: nextest - - name: Run cargo check - run: | - cargo check --all-targets --all-features - name: Run cargo nextest run: | - cargo nextest run --profile ci \ No newline at end of file + cargo nextest run --profile ci --all-features \ No newline at end of file