Skip to content

Commit

Permalink
Archive test results (#124)
Browse files Browse the repository at this point in the history
* Archive test results

* Move archive blocks to after running the tests
  • Loading branch information
JorenHannes committed Jan 17, 2024
1 parent ec52406 commit f29bce0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,13 @@ jobs:
uses: gradle/gradle-build-action@v2
with:
arguments: build testAllJavaVersions jacocoTestReport
- name: Archive Test Results
uses: actions/upload-artifact@v3
with:
name: Test Results
path: base/build/reports/tests
- name: Archive Code Coverage Report
uses: actions/upload-artifact@v3
with:
name: Code Coverage Results
path: base/build/reports/jacoco

0 comments on commit f29bce0

Please sign in to comment.