Skip to content

Commit

Permalink
Run GH verification build on Linux and macOS
Browse files Browse the repository at this point in the history
Fixes #1080
  • Loading branch information
HannesWell committed Dec 31, 2022
1 parent 5640b34 commit 9f16486
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,19 @@ on:
jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 45

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Set up JDK 17
uses: actions/setup-java@v3
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -40,7 +43,7 @@ jobs:
- name: Upload Test Results
uses: actions/upload-artifact@v3
with:
name: test-results
name: test-results-${{ matrix.os }}
if-no-files-found: error
path: |
${{ github.workspace }}/**/target/surefire-reports/*.xml
Expand All @@ -52,4 +55,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Event File
path: ${{ github.event_path }}
path: ${{ github.event_path }}

0 comments on commit 9f16486

Please sign in to comment.