Skip to content

Commit

Permalink
SP-40 Support multiple versions of Java
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbrodie committed Aug 5, 2022
1 parent c0d49d2 commit 3c746d9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ on:
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
java-version: [8, 11, 17]

steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
- name: Build with Maven
run: mvn compile

0 comments on commit 3c746d9

Please sign in to comment.