Skip to content

Merge pull request #228 from TheJacksonLaboratory/update_dependencies #112

Merge pull request #228 from TheJacksonLaboratory/update_dependencies

Merge pull request #228 from TheJacksonLaboratory/update_dependencies #112

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: Java CI with Maven
on:
push:
branches: [ master, development ]
pull_request:
branches: [ master, development ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, macOS-latest, ubuntu-latest ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Build with Maven
run: ./mvnw --batch-mode verify