We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e4edb commit 0faf0bdCopy full SHA for 0faf0bd
3 files changed
.coveralls.yml
.github/workflows/maven.yml
@@ -16,11 +16,13 @@ jobs:
16
17
steps:
18
- uses: actions/checkout@v3
19
- - name: Set up JDK 11
20
- uses: actions/setup-java@v3
+ - name: Set up JDK 1.8
+ uses: actions/setup-java@v1
21
with:
22
- java-version: '11'
+ java-version: 1.8
23
distribution: 'temurin'
24
cache: maven
25
- name: Build with Maven
26
run: mvn -B package --file pom.xml
27
+ - name: Run test and coverage report
28
+ run: mvn clean test jacoco:report coveralls:report -DrepoToken=${{ secrets.COVERALL_REPO_SECRET }}
.travis.yml
0 commit comments