We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b8c08 commit 9a31769Copy full SHA for 9a31769
.github/workflows/build.yml
@@ -13,9 +13,10 @@ jobs:
13
runs-on: ${{ matrix.os }}
14
15
strategy:
16
+ fail-fast: false
17
matrix:
18
os: [ ubuntu-18.04, ubuntu-20.04, windows-latest ]
- java: [ '8', '11', '17-ea' ]
19
+ java: [ '8', '11' ]
20
arch: [ 'x86', 'x64' ]
21
exclude:
22
- os: ubuntu-18.04
@@ -36,7 +37,9 @@ jobs:
36
37
uses: actions/cache@v2
38
with:
39
path: ~/.m2/repository
- key: m2-cache-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
40
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
41
+ restore-keys: |
42
+ ${{ runner.os }}-maven-
43
44
- name: Set up JDK ${{ matrix.java }}
45
uses: actions/setup-java@v2
0 commit comments