Skip to content

Commit

Permalink
Update github action build
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonStoldt committed May 22, 2024
1 parent 6da26c1 commit c0ce449
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04]
jdk: [17]
os: [ ubuntu-latest ]
jdk: [ 11, 17, 21 ]
runs-on: ${{ matrix.os }}
env:
JDK_VERSION: ${{ matrix.jdk }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: setup jdk
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'

- name: build with maven
run: mvn --batch-mode --update-snapshots verify

0 comments on commit c0ce449

Please sign in to comment.