Skip to content

Commit

Permalink
workflow updates
Browse files Browse the repository at this point in the history
  • Loading branch information
erosb committed Dec 23, 2023
1 parent f6d9c04 commit e10a5d7
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
cache: 'maven'

- name: Test with Maven
run: mvn -B verify -Dgroups='!acceptance'
run: mvn -B verify
build-unittest:
name: Unit Test with Java ${{ matrix.jdk }}
runs-on: ubuntu-latest
Expand All @@ -34,5 +34,15 @@ jobs:
jdk: ['8', '11', '17', '21' ]

steps:
- uses: actions/checkout@v4
- name: Checkout submodules
run: git submodule update --init --recursive

- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: ${{ matrix.jdk }}
cache: 'maven'
- name: Test with Maven
run: mvn -B verify
run: mvn -B verify -Dgroups='!acceptance'

0 comments on commit e10a5d7

Please sign in to comment.