Skip to content

prettyprint: implementing #21

prettyprint: implementing

prettyprint: implementing #21

Workflow file for this run

# 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: GithubCI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# test specific updates of LTS versions:
java: [ 8 , 11]
name: Java${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml