Paul Campbell
272fe20e4c
* Update github actions * Bump tiles-maven-plugin to 2.17 for jdk 14 compatibility * Require JDK 11+
23 lines
453 B
YAML
23 lines
453 B
YAML
name: maven-build
|
|
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
pull_request:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
java: [ 11, 14 ]
|
|
steps:
|
|
- uses: kamiazya/setup-graphviz@v1
|
|
- uses: actions/checkout@v2
|
|
- name: setup-jdk-${{ matrix.java }}
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
- name: build-jar
|
|
run: mvn -B install
|