Skip to content

Commit 53f7cc6

Browse files
committed
chore: Enable builds on more OSes, disable debug
1 parent d40bf3b commit 53f7cc6

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/gradle.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,20 @@ on:
1515

1616
jobs:
1717
build:
18-
19-
runs-on: ubuntu-latest
18+
runs-on: ${{ matrix.os }}
19+
strategy:
20+
matrix:
21+
java-version: [ 17, 20 ]
22+
os: [ macos-latest, ubuntu-latest, windows-latest ]
2023
permissions:
2124
contents: read
2225

2326
steps:
2427
- uses: actions/checkout@v4
25-
- name: Set up JDK 17
28+
- name: Set up JDK
2629
uses: actions/setup-java@v4
2730
with:
28-
java-version: '17'
29-
distribution: 'temurin'
31+
java-version: ${{ matrix.java-version }}
3032
- name: Set up node
3133
uses: actions/setup-node@v4
3234
with:

0 commit comments

Comments
 (0)