Paul Campbell
ac18fbb2d5
* github/build: verify javadoc validity * github/build: stop testing against JDK 8 * github/build: test against JDK 16 and 17-ea Drop testing against JDK 15 * github/deploy: remove graphviz * github.deploy: nexus username is not a secret * github/settings: nexus username is not a secret * github/deploy: publish javadoc To: https://kemitix.github.io/wiser-assertions/ * github/build: upgrade setup-java action to 2.1.0 * github/deploy: upgrade setup-java action to 2.1.0
25 lines
526 B
YAML
25 lines
526 B
YAML
name: maven-build
|
|
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
pull_request:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
java: [ 11, 16, 17-ea ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: setup-jdk-${{ matrix.java }}
|
|
uses: actions/setup-java@v2.1.0
|
|
with:
|
|
distribution: adopt
|
|
java-version: ${{ matrix.java }}
|
|
- name: build-jar
|
|
run: mvn -B install
|
|
- name: verify javadoc
|
|
run: mvn -P release javadoc:javadoc
|