Skip to content

Merge pull request #438 from Emily-Jiang/remove-empty-section #554

Merge pull request #438 from Emily-Jiang/remove-empty-section

Merge pull request #438 from Emily-Jiang/remove-empty-section #554

Workflow file for this run

## This allows Github actions to build this project
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
name: build with jdk ${{matrix.java}}
steps:
- uses: actions/checkout@v2
name: checkout
- uses: actions/setup-java@v1
name: set up jdk ${{matrix.java}}
with:
java-version: ${{matrix.java}}
- name: build with maven
run: mvn -B verify javadoc:javadoc --file pom.xml