Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.8.0 #1043
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: Build | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.gitignore' | |
- 'CODEOWNERS' | |
- 'LICENSE' | |
- 'NOTICE' | |
- 'README*' | |
pull_request: | |
paths-ignore: | |
- '.gitignore' | |
- 'CODEOWNERS' | |
- 'LICENSE' | |
- 'NOTICE' | |
- 'README*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: checkout | |
- uses: actions/setup-java@v1 | |
name: set up jdk 17 | |
with: | |
java-version: 17 | |
- name: build with maven | |
run: mvn verify -Pnative | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: checkout | |
- uses: actions/setup-java@v1 | |
name: set up jdk 17 | |
with: | |
java-version: 17 | |
- name: build with maven | |
# Skip integration tests. TestContainers does not support Windows Server 2019: https://github.com/testcontainers/testcontainers-java/issues/2960 | |
run: mvn test |