Skip to content

Commit

Permalink
run github actions maven.yml for both java 17 and 21
Browse files Browse the repository at this point in the history
  • Loading branch information
OyvindLGjesdal authored and afs committed Oct 27, 2024
1 parent 08209ae commit 4da9ea0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
java_version: ['17', '21']

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: ${{ matrix.java_version }}
- name: Build with Maven
run: mvn -B --file pom.xml -Dmaven.javadoc.skip=true install

0 comments on commit 4da9ea0

Please sign in to comment.