Regenerate JavaDoc #36
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
name: Test coverage on main branch delivery | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: Build with Maven | |
run: mvn test --batch-mode -Dmaven.test.failure.ignore=true | |
- name: Publish Test Report | |
uses: scacap/action-surefire-report@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Coveralls.io coverage report | |
run: | | |
git checkout | |
mvn -X jacoco:report coveralls:report -DrepoToken=${{ secrets.coveralls }} |