Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,21 @@ jobs:
run: ./gradlew test jacocoTestReport

- name: Upload Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
name: test-results-${{ matrix.java }}
path: build/reports/tests/test

- name: Upload Coverage Report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
name: code-coverage-report-${{ matrix.java }}
path: build/reports/jacoco/test/html

- name: Upload Jacoco XML Report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jacoco-xml-report
name: jacoco-xml-report-${{ matrix.java }}
path: build/reports/jacoco/test/jacocoTestReport.xml

- name: Codecov
Expand Down
Loading