Skip to content

Commit

Permalink
Maroon-586 [CI] Run EditMode tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
mfbrantner authored Feb 25, 2025
1 parent bf9bed4 commit 94eaccd
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,15 @@ jobs:
strategy:
fail-fast: false
matrix:
projectPath: [unity]
testMode: [playmode, editmode]
include:
# first matrix job (playmode, no params)
- projectPath: unity
testMode: playmode
params: ""
# second matrix job (editmode, run in parallel)
- projectPath: unity
testMode: editmode
params: "-runSynchronously"

steps:

Expand Down Expand Up @@ -63,6 +70,7 @@ jobs:
artifactsPath: test-${{ matrix.testMode }}-results
githubToken: ${{ secrets.GITHUB_TOKEN }}
checkName: "Test Results: ${{ matrix.testMode }}"
customParameters: ${{ matrix.params }}

# Upload results
- name: Upload test results
Expand Down

0 comments on commit 94eaccd

Please sign in to comment.