Bump org.assertj:assertj-core from 3.25.1 to 3.25.2 #892
Workflow file for this run
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
# 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: OpenPDF maven build | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# The last 3 LTS releases | |
# Java 8 is supported until May 2026 | |
# Java 11 is run in codacy-coverage-reporter | |
java: [ 17, 21 ] | |
name: Java ${{matrix.java}} | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: ${{matrix.java}} | |
- name: Build with Maven | |
run: mvn -B verify --file pom.xml -Dgpg.skip | |
codacy-coverage-reporter: | |
runs-on: ubuntu-latest | |
name: codacy-coverage-reporter | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Build with Maven | |
run: mvn -B verify --file pom.xml -Dgpg.skip | |
- name: Run codacy-coverage-reporter | |
uses: codacy/codacy-coverage-reporter-action@v1 | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
# or | |
# api-token: ${{ secrets.CODACY_API_TOKEN }} | |
coverage-reports: ./openpdf/target/site/jacoco/jacoco.xml,./pdf-toolbox/target/site/jacoco/jacoco.xml,./openpdf-fonts-extra/target/site/jacoco/jacoco.xml | |
# or a comma-separated list for multiple reports | |
# coverage-reports: <PATH_TO_REPORT>, <PATH_TO_REPORT> |