Skip to content

Commit

Permalink
Merge pull request #399 from carldea/master
Browse files Browse the repository at this point in the history
Using TCK Tested JDK builds of OpenJDK
  • Loading branch information
chibash committed May 10, 2022
2 parents 668d092 + b7838d4 commit c15bd46
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/maven.yml
Expand Up @@ -13,13 +13,16 @@ jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
os: [ ubuntu-latest ]
java-version: [ 11.0.3, 11 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
distribution: 'zulu'
- name: Build with Maven
run: mvn -B package --file pom.xml

0 comments on commit c15bd46

Please sign in to comment.