Skip to content

Commit

Permalink
Add Windows and MacOS builds to GA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
reta committed Jun 30, 2023
1 parent bd9a418 commit 5ee8864
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pull-request-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ permissions:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
permissions:
contents: read
pull-requests: read
Expand All @@ -23,6 +26,6 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Build with Apache Maven
run: mvn -U clean install -Djava.awt.headless=true -fae -B -Peverything
run: mvn -U clean install -fae -B -Peverything
env:
MAVEN_OPTS: "-Xmx1024M"

0 comments on commit 5ee8864

Please sign in to comment.