kemitix-trello/.github/workflows/build-maven.yml
Paul Campbell c7e5e47537
Release 1.0.0 (#5)
* .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
2020-12-04 19:00:42 +00:00

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