Skip to content

Fix for SECURITY-2979 / CVE-2023-50771 #151

Fix for SECURITY-2979 / CVE-2023-50771

Fix for SECURITY-2979 / CVE-2023-50771 #151

Workflow file for this run

name: 'Github base Continuous Integration'
on:
push:
branches:
- master
pull_request:
jobs:
coverage:
runs-on: [ ubuntu-latest ]
name: Coverage on Ubuntu
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
check-latest: true
cache: 'maven'
- name: Generate coverage with JaCoCo
run: mvn clean verify jacoco:prepare-agent test integration-test jacoco:report
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./target/site/jacoco/jacoco.xml