Bump codecov/codecov-action from a7b945cea47ad44d8340fae2b004cb982191264f to c16abc29c95fcf9174b58eb7e1abf4c866893bc8 #815
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@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 | |
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@c16abc29c95fcf9174b58eb7e1abf4c866893bc8 # v4.0.0 | |
with: | |
file: ./target/site/jacoco/jacoco.xml |