Skip to content

Commit

Permalink
test: split windows into windows-unit and windows-e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Sep 25, 2024
1 parent 9f2af75 commit 07758a2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit 07758a2

Please sign in to comment.