Skip to content

Commit 502fe29

Browse files
committed
ci(workflow): remove jacoco reporting steps
1 parent 4d8b9d1 commit 502fe29

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

.github/workflows/build-pr.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,8 @@ jobs:
1818
uses: actions/setup-java@v4
1919
with:
2020
distribution: temurin
21-
java-version: 24
21+
java-version: 25
2222
- name: Setup Gradle
2323
uses: gradle/actions/setup-gradle@v4
2424
- name: Build on ${{ matrix.os }}
2525
run: ./gradlew clean build test
26-
- name: Generate JaCoCo Coverage Report
27-
if: matrix.os == 'ubuntu-latest'
28-
run: ./gradlew jacocoRootReport
29-
- name: Upload Coverage Report
30-
if: matrix.os == 'ubuntu-latest'
31-
uses: actions/upload-artifact@v4
32-
with:
33-
name: jacoco-report
34-
path: |
35-
build/reports/jacoco/jacocoRootReport/html/
36-
build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml
37-
- name: Upload Coverage to Codecov
38-
if: matrix.os == 'ubuntu-latest'
39-
uses: codecov/codecov-action@v5
40-
with:
41-
file: build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml
42-
fail_ci_if_error: false
43-
token: ${{ secrets.CODECOV_TOKEN }}
44-
comment: true

0 commit comments

Comments
 (0)