Skip to content

Merge pull request #373 from AdoptOpenJDK/chriswhocodes-patch-1 #61

Merge pull request #373 from AdoptOpenJDK/chriswhocodes-patch-1

Merge pull request #373 from AdoptOpenJDK/chriswhocodes-patch-1 #61

Workflow file for this run

name: Java CI
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, macOS-latest, windows-latest]
java: [11, 17]
fail-fast: false
max-parallel: 2
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Test with Maven
run: mvn test -B --file pom.xml