We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62025dd commit 766f5b1Copy full SHA for 766f5b1
.github/workflows/build.yml
@@ -33,10 +33,19 @@ concurrency:
33
34
jobs:
35
build:
36
- name: Build with Java 8
37
- runs-on: ubuntu-latest
+ name: Build with Java ${{ matrix.java }} on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
38
timeout-minutes: 15
39
40
+ strategy:
41
+ fail-fast: false
42
+ matrix:
43
+ java:
44
+ - "11"
45
+ - "17"
46
+ os:
47
+ - "ubuntu-latest"
48
+
49
steps:
50
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
51
- uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
0 commit comments