Skip to content

build(deps): bump org.apache.maven.plugins:maven-release-plugin from 3.2.0 to 3.3.1 #241

build(deps): bump org.apache.maven.plugins:maven-release-plugin from 3.2.0 to 3.3.1

build(deps): bump org.apache.maven.plugins:maven-release-plugin from 3.2.0 to 3.3.1 #241

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: Coverage Report
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: 17
distribution: 'zulu'
- name: Cache Maven packages
uses: actions/cache@v5
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Publish coverage report to Coveralls
run: |
mvn clean test jacoco:report coveralls:report -DrepoToken=${{ secrets.COVERALLS_TOKEN }}
- name: Publish coverage report to QLTY
uses: qltysh/qlty-action/coverage@v2
with:
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
files: target/site/jacoco/jacoco.xml
add-prefix: src/main/java/
- name: Publish coverage report to Codacy
uses: codacy/[email protected]
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: target/site/jacoco/jacoco.xml
language: java