From 22251cebbfe8d3b8024fb4e25b0342c0d07628e3 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:59:11 -0500 Subject: [PATCH] test: split windows into windows-unit and windows-e2e (#2652) --- .github/workflows/test.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f3e55ffac..9fa4f40f0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -213,7 +213,15 @@ jobs: with: recreate: true path: code-coverage-results.md - windows: + windows-unit: + runs-on: windows-latest + timeout-minutes: 20 + steps: + - uses: actions/checkout@v4 + - uses: Swatinem/rust-cache@v2 + - run: cargo test + continue-on-error: true + windows-e2e: runs-on: windows-latest timeout-minutes: 20 steps: @@ -222,5 +230,3 @@ jobs: - run: cargo build - run: Add-Content $env:GITHUB_PATH "$PWD\target\debug" - run: pwsh e2e-win\run_all.ps1 - - run: cargo test - continue-on-error: true