Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.5 to 3.2.7 #123
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: maven test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '11', '17', '19' ] | |
name: 'Java ${{ matrix.java }} maven test' | |
steps: | |
- name: 'checkout' | |
uses: 'actions/checkout@v3' | |
- name: 'Set up JDK ${{ matrix.java }}' | |
uses: 'actions/setup-java@v3' | |
with: | |
java-version: '${{ matrix.java }}' | |
distribution: 'adopt' | |
- name: 'Build & test with Maven' | |
run: 'mvn test' | |
- name: 'upload code coverage' | |
if: ${{ matrix.java == '11' }} | |
uses: 'codecov/codecov-action@v4' | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # required | |
files: 'target/site/jacoco/jacoco.xml' | |
name: 'codecov-umbrella' | |
flags: unittests # optional | |
verbose: true # optional (default = false) |