Skip to content

Commit

Permalink
feat: created matrix for test execution in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
scrthq committed Jan 12, 2024
1 parent 4e490db commit 3a653f3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-test-deploy-powershell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,19 @@ jobs:
run: |
. ./build.ps1 -Task Test
- name: Test Report - ${{ matrix.os }}
uses: dorny/test-reporter@v1
if: success() || failure()
continue-on-error: true
with:
name: Pester Tests - ${{ matrix.os }}
path: '**/Test*.xml'
reporter: java-junit

- name: Collect Test Result - ${{ matrix.os }}
id: test_result
uses: zyborg/pester-tests-report@v1
continue-on-error: true
with:
test_results_path: BuildOutput/TestResults.xml
report_name: test_result
Expand Down

0 comments on commit 3a653f3

Please sign in to comment.