Dependency and license update. Releasing new version #361
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: Compute coverage | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "src/main/**" | |
- "src/test/**" | |
# - ".github/workflows/**" | |
- "**.properties" | |
- "**.xml" | |
jobs: | |
compute-coverage: | |
name: Compute coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 8 | |
distribution: 'zulu' | |
architecture: x64 | |
- name: Build and test | |
run: mvn clean test -DskipTests=false -Dproject_jdk_version=8 -P run-coveralls jacoco:report coveralls:report -DrepoToken=${{ secrets.coveralls_repo_token }} | |