Closes request #33993: Pull request title should use the "raw" title … #743
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-2019", "ubuntu-22.04"] | |
name: Tests (${{ matrix.os }}) with coverage | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Build | |
run: mvn -Pjacoco clean verify --batch-mode --show-version | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./target/site/jacoco/jacoco.xml |