Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Bump org.jacoco:jacoco-maven-plugin from 0.8.5 to 0.8.12 #103

Bump org.jacoco:jacoco-maven-plugin from 0.8.5 to 0.8.12

Bump org.jacoco:jacoco-maven-plugin from 0.8.5 to 0.8.12 #103

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: maven
- name: Build w/Coverage
run: mvn -B clean compile jacoco:report verify
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./target/site/jacoco/jacoco.xml
verbose: true
env_vars: GHACTION