text-wrap-fit-box/.github/workflows/maven-build.yml

27 lines
641 B
YAML
Raw Normal View History

2020-05-18 23:08:16 +01:00
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 13 ]
steps:
2020-05-18 23:16:30 +01:00
# - uses: kamiazya/setup-graphviz@v1
2020-05-18 23:08:16 +01:00
- uses: actions/checkout@v2
- name: setup-java-${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: install
run: mvn -B install