We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c37911 commit 9c10ebbCopy full SHA for 9c10ebb
.github/workflows/code-coverage.yml
@@ -11,13 +11,14 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v4
15
- - name: Setup JDK 17
16
- uses: actions/setup-java@v4
17
- with:
18
- java-version: '17'
19
- - name: Build with Maven
20
-
21
- run: mvn clean test jacoco:report
22
- - name: Upload Code Coverage Report
23
- uses: codecov/codecov-action@v4
+ - uses: actions/checkout@v4
+ - name: Set up JDK 17
+ uses: actions/setup-java@v4
+ with:
+ java-version: '17'
+ distribution: 'temurin'
+ cache: maven
+ - name: Build with Maven
+ run: mvn clean test jacoco:report
+ - name: Upload Code Coverage Report
24
+ uses: codecov/codecov-action@v4
0 commit comments