Skip to content

Commit

Permalink
chore: Enable builds on more OSes, disable debug
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones committed May 16, 2024
1 parent d40bf3b commit 53f7cc6
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@ on:

jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
java-version: [ 17, 20 ]
os: [ macos-latest, ubuntu-latest, windows-latest ]
permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- name: Set up node
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 53f7cc6

Please sign in to comment.