Skip to content

Commit

Permalink
[ci] test on multiple jdks and platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
marmoure committed Nov 6, 2023
1 parent facfc16 commit 85ff22a
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
name: Build
on: [push, pull_request]

jobs:
build:
runs-on: macos-latest
assemble:
name: Build and Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
jdk: [1.8.282,1.11.0,1.17.0-0]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
- name: Build with Maven
run: mvn clean test
distribution: 'zulu'
java-version: ${{ matrix.jdk }}
- run: mvn clean package

0 comments on commit 85ff22a

Please sign in to comment.