Bump codecov/codecov-action from a7b945cea47ad44d8340fae2b004cb982191264f to 0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 #793
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
name: CI | |
permissions: read-all | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
tests-with-coverage: | |
strategy: | |
matrix: | |
os: ["windows-2022", "ubuntu-22.04"] | |
name: Tests (${{ matrix.os }}) with coverage | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build | |
run: mvn -Pjacoco clean verify --batch-mode --show-version | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 # v4.0.0 | |
with: | |
file: ./target/site/jacoco/jacoco.xml |