We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14bb07c commit 20708f7Copy full SHA for 20708f7
1 file changed
.github/workflows/master.yml
@@ -6,11 +6,20 @@ jobs:
6
runs-on: ubuntu-latest
7
strategy:
8
matrix:
9
- java: [ '17' ]
+ java: [ '8', '11', '17' ]
10
steps:
11
- name: Checkout
12
uses: actions/checkout@v3
13
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
+
23
- name: 🪜 Setup java ${{ matrix.java }}
24
uses: actions/setup-java@v3
25
with:
0 commit comments