diff options
author | Shigeru Chiba <chibash@users.noreply.github.com> | 2022-05-10 13:55:34 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 13:55:34 +0900 |
commit | c15bd463fd40a9ca6dff455659de59fb17fd91f1 (patch) | |
tree | 848f580a1bacfce6bcc67bd120b1bbb12e3b2a51 | |
parent | 668d092a8828d577c9120f174a833d94a3b3f626 (diff) | |
parent | b7838d44abe1c3a3fd762061ac8c16fea4d509f3 (diff) | |
download | javassist-c15bd463fd40a9ca6dff455659de59fb17fd91f1.tar.gz javassist-c15bd463fd40a9ca6dff455659de59fb17fd91f1.zip |
Merge pull request #399 from carldea/master
Using TCK Tested JDK builds of OpenJDK
-rw-r--r-- | .github/workflows/maven.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 1531e216..423bc949 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -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 |