Skip to content

Commit 6180495

Browse files
committed
fix: forgot strategy var
Signed-off-by: ok-coder1 <[email protected]>
1 parent 7b7188c commit 6180495

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ jobs:
1010
build-java:
1111
name: Build on Java
1212
runs-on: ubuntu-latest
13-
matrix:
14-
java-version: [21, 17]
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
java-version: [21, 17]
1517
steps:
1618
- name: Checkout repository
1719
uses: actions/checkout@v4

.github/workflows/pr-compile.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ jobs:
55
compile-java:
66
name: Compile Java
77
runs-on: ubuntu-latest
8-
matrix:
9-
java-version: [21, 17]
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
java-version: [21, 17]
1012
steps:
1113
- name: Checkout repository
1214
uses: actions/checkout@v4

0 commit comments

Comments
 (0)