Skip to content

Commit ca274e4

Browse files
committed
feat: release 2.0.4 version
1 parent 6c795d1 commit ca274e4

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,16 @@ jobs:
2828
distribution: 'temurin'
2929
cache: maven
3030
- name: Test with Maven
31-
run: mvn clean install -B -U --file pom.xml
31+
run: mvn clean verify -B -U --file pom.xml
3232
- name: Upload coverage reports to Codecov
33-
uses: codecov/codecov-action@v3
33+
uses: codecov/codecov-action@v4
3434
with:
3535
token: ${{ secrets.CODECOV_TOKEN }}
36+
files: ./**/target/site/jacoco/jacoco.xml
3637
flags: pull-request
3738
name: PR-Coverage
39+
fail_ci_if_error: false
40+
verbose: true
3841
JDK21-Test:
3942
runs-on: ubuntu-latest
4043
steps:

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@
203203
</argLine>
204204
<testFailureIgnore>${maven.ignore.testfailure}</testFailureIgnore>
205205
<skipTests>false</skipTests>
206-
<reportsDirectory>../../site/junit</reportsDirectory>
207206
<useSystemClassLoader>false</useSystemClassLoader>
208207
<forkCount>1</forkCount>
209208
<reuseForks>true</reuseForks>
@@ -297,7 +296,8 @@
297296
</goals>
298297
<configuration>
299298
<dataFile>${project.build.directory}/coverage.exec</dataFile>
300-
<outputDirectory>../../site/${project.artifactId}</outputDirectory>
299+
<outputDirectory>${project.build.directory}/site/jacoco
300+
</outputDirectory>
301301
</configuration>
302302
</execution>
303303
<execution>

0 commit comments

Comments
 (0)