Skip to content

Commit

Permalink
Update GH actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
luisgoncalves committed Jun 30, 2023
1 parent d763955 commit 38a30f2
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 @@ -12,18 +12,18 @@ on:
jobs:
build:

runs-on: ${{ matrix.os }}
name: Java ${{ matrix.java }} on ${{ matrix.os }}
runs-on: ubuntu-latest
name: Java ${{ matrix.java }}
strategy:
matrix:
os: [ubuntu-18.04]
java: [11, 16, 17]

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

0 comments on commit 38a30f2

Please sign in to comment.