Skip to content

Commit

Permalink
ci: Build with Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Wandmalfarbe committed Aug 11, 2023
1 parent 916f6c3 commit e454a23
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@ jobs:
- name: Build with Maven
run: mvn clean package --batch-mode --threads 4

build-windows:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn clean package --batch-mode --threads 4


build-macos:

runs-on: macos-latest
Expand Down

0 comments on commit e454a23

Please sign in to comment.