Bump the dev-dependencies group across 1 directory with 14 updates (#… #403
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '11', '17', '20' ] | |
name: Testing on Java ${{ matrix.Java }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2.3.1 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: adopt | |
- name: Build tools | |
run: ./mvnw clean install -B -Pbuild-tools -Djgitver.skip=true | |
- name: Test | |
run: ./mvnw clean install -B -Pmodules |