Skip to content

Commit

Permalink
Update maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 9, 2022
1 parent 484a7f9 commit c7ab8ef
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ jobs:
Build:
strategy:
matrix:
java: [ 11 ]
java: [ 8, 11 ]

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
cache: maven
distribution: 'temurin'
- name: Build with Maven
run: mvn -B install --file pom.xml

0 comments on commit c7ab8ef

Please sign in to comment.