Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
check_name: "Test Results"
comment_title: "Unit Test Results"
- name: Upload Test Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always() && matrix.os == 'ubuntu-latest'
with:
name: test-report
path: build/reports/tests/test/
- name: Upload Coverage Reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always() && matrix.os == 'ubuntu-latest'
with:
name: coverage-report
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Build
run: ./gradlew clean build test
- name: Upload JAR for PR
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pr-jar
path: build/libs/*.jar
Expand Down