-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup coveralls action instead of ancient coveralls maven plugin (#249)
* Setup coveralls action instead of ancient coveralls maven plugin * fix: rollback to versions that supports java 8 * Include finish step in main workflow as well. Thanks Gaston * Add checkout so git command from coverallsapp addon works
- Loading branch information
Showing
4 changed files
with
74 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,43 @@ | ||
on: | ||
pull_request: | ||
|
||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
version: [8,11,17] | ||
version: [ 8, 11, 17 ] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ matrix.version }} | ||
cache: 'maven' | ||
distribution: 'temurin' | ||
cache: "maven" | ||
distribution: "temurin" | ||
- name: Build, test, coverage | ||
run: ./mvnw clean test jacoco:report coveralls:report | ||
run: ./mvnw clean test jacoco:report | ||
- name: Coveralls parallel | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
allow-empty: true | ||
flag-name: run-jvm-${{ join(matrix.*, '-') }} | ||
parallel: true | ||
base-path: src/main/java | ||
finish: | ||
needs: build | ||
if: ${{ always() }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Coveralls Finished | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
parallel-finished: true | ||
carryforward: run-jvm-8,run-jvm-11,run-jvm-17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters