Skip to content

Update dependency org.jacoco:jacoco-maven-plugin to v0.8.11 #779

Update dependency org.jacoco:jacoco-maven-plugin to v0.8.11

Update dependency org.jacoco:jacoco-maven-plugin to v0.8.11 #779

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
architecture: x64
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build
run: mvn -B -V -DskipTests=true -Dmaven.javadoc.skip=true package
- name: Coveralls
run: mvn -B -V -DrepoToken=${{ secrets.COVERALLS_TOKEN }} -Pcoverage verify coveralls:report