Bump s4u/setup-maven-action from 1.14.0 to 1.15.0 #836
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java_version: [8] | |
max-parallel: 4 | |
name: Test JDK ${{ matrix.java_version }} | |
steps: | |
- name: Setup Maven Action | |
uses: s4u/[email protected] | |
with: | |
checkout-fetch-depth: 0 | |
java-version: ${{ matrix.java_version }} | |
java-distribution: temurin | |
maven-version: 3.8.7 | |
- name: Verify with Maven | |
run: mvn verify -B | |
- name: Verify jsonschema2pojo-gradle-plugin integration tests | |
run: | | |
mvn -U -B install -DskipTests -Dmaven.javadoc.skip -Dmaven.site.skip -pl jsonschema2pojo-gradle-plugin -am | |
mvn -U -B install -pl jsonschema2pojo-gradle-plugin |