Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/AdoptOpenJDK/jitwatch
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswhocodes committed Oct 29, 2020
2 parents fac32f8 + 017ca22 commit 6a454a0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Java CI

on: [push]

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04]
java: [11, 11.0.9, 13, 13.0.4, 15, 16-ea]
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

0 comments on commit 6a454a0

Please sign in to comment.