Skip to content

Commit

Permalink
build: run CI checks on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrMilchmann committed Dec 30, 2024
1 parent 03c4db1 commit be05c32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ jobs:
name: Check
strategy:
matrix:
jdk: [ 8, 11, 17, 21, 23 ]
jdk: [ 8, 11, 17, 21, 23]
os: [ macos-latest, ubuntu-latest, windows-latest ]
needs: build
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/download-artifact@v4
Expand All @@ -59,7 +60,6 @@ jobs:
tar -xvf ${{ env.WORKSPACE_ARCHIVE }}
rm ${{ env.WORKSPACE_ARCHIVE }}
- name: Setup Java
uses: actions/setup-java@v4
with:
Expand Down

0 comments on commit be05c32

Please sign in to comment.