Skip to content

Bump io.swagger.core.v3:swagger-models from 2.2.42 to 2.2.43 #116

Bump io.swagger.core.v3:swagger-models from 2.2.42 to 2.2.43

Bump io.swagger.core.v3:swagger-models from 2.2.42 to 2.2.43 #116

Workflow file for this run

name: Java CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
checks: write
contents: read
jobs:
compile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up OpenJDK 21
uses: actions/setup-java@v5
with:
java-version: '21'
distribution: 'adopt'
cache: 'maven'
- name: Compile with Maven
run: mvn compile --file pom.xml
verify:
needs: compile
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up OpenJDK 21
uses: actions/setup-java@v5
with:
java-version: '21'
distribution: 'adopt'
cache: 'maven'
- name: Verify with Maven
run: mvn verify --file pom.xml -Dgpg.skip
- name: Publish Test Report
if: success() || failure()
uses: scacap/action-surefire-report@v1
- name: Upload Report
uses: 'actions/upload-artifact@v6'
with:
name: jacoco-report
path: ${{ github.workspace }}/target/site/jacoco/jacoco.xml
- name: Add coverage
id: jacoco
uses: madrapps/jacoco-report@v1.7.2
with:
paths: ${{ github.workspace }}/target/site/jacoco/jacoco.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 40
min-coverage-changed-files: 60
title: Code Coverage