Skip to content

Commit

Permalink
build: always archive test results
Browse files Browse the repository at this point in the history
  • Loading branch information
npepinpe committed May 25, 2022
1 parent 34f3692 commit 9e760a0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
mvn -B -Pparallel-tests -DforkCount=2C -DskipChecks -pl core test
- name: Archive Test Results
uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: target/surefire-reports/
Expand Down Expand Up @@ -78,6 +79,7 @@ jobs:
mvn -B -DskipChecks -Plocal-test -pl core test
- name: Archive Test Results
uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: target/surefire-reports/
Expand All @@ -101,6 +103,7 @@ jobs:
mvn -B -DskipChecks -pl exporter-test test
- name: Archive Test Results
uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: target/surefire-reports/
Expand Down

0 comments on commit 9e760a0

Please sign in to comment.