Skip to content

Commit

Permalink
Updated build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jun 18, 2023
1 parent a6294fd commit 2c70a74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11 ]
java: [ 11, 19 ]
name: Java ${{ matrix.java }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn clean test -q

0 comments on commit 2c70a74

Please sign in to comment.