Skip to content

Commit

Permalink
Add github workflows for mac and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Jan 10, 2025
1 parent 07877f7 commit 49cd257
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/macos-arm64.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: MacOS arm64
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Azul JDK 8
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn --no-transfer-progress -B test
17 changes: 17 additions & 0 deletions .github/workflows/windows-x64.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Windows x64
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Azul JDK 8
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn --no-transfer-progress -B test

0 comments on commit 49cd257

Please sign in to comment.