Paul Campbell
c7e5e47537
* .github: replace outdated version of github directory * github: don't get nexus username from secrect * build-maven: drop jdk 8 and update action versions * deploy-sonatype: update action versions
23 lines
461 B
YAML
23 lines
461 B
YAML
name: maven-build
|
|
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
pull_request:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
java: [ 11, 15 ]
|
|
steps:
|
|
- uses: kamiazya/setup-graphviz@v1
|
|
- uses: actions/checkout@v2.3.4
|
|
- name: setup-jdk-${{ matrix.java }}
|
|
uses: actions/setup-java@v1.4.3
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
- name: build-jar
|
|
run: mvn -B install
|