Skip to content

Commit 20708f7

Browse files
committed
Java matrix
1 parent 14bb07c commit 20708f7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/master.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,20 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
java: [ '17' ]
9+
java: [ '8', '11', '17' ]
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v3
1313

14+
- uses: actions/cache@v3
15+
with:
16+
path: |
17+
~/.gradle/caches
18+
~/.gradle/wrapper
19+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
20+
restore-keys: |
21+
${{ runner.os }}-gradle-
22+
1423
- name: 🪜 Setup java ${{ matrix.java }}
1524
uses: actions/setup-java@v3
1625
with:

0 commit comments

Comments
 (0)