Skip to content

Commit b275337

Browse files
committed
added matrix for distributions
1 parent f411cae commit b275337

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ jobs:
1313
matrix:
1414
os: [windows-2016, windows-2019, ubuntu-18.04, ubuntu-20.04]
1515
java-version: ['8', '11']
16+
distribution: [ 'zulu', 'temurin' ]
1617
steps:
1718
- name: Checkout
1819
uses: actions/checkout@v2
1920

2021
- name: Set up JDK
2122
uses: actions/setup-java@v2
2223
with:
23-
distribution: 'adopt'
24+
distribution: ${{ matrix.distribution }}
2425
java-version: ${{ matrix.java-version }}
2526

2627
- name: Test

0 commit comments

Comments
 (0)