Skip to content

Commit

Permalink
Integration test with special profile
Browse files Browse the repository at this point in the history
  • Loading branch information
sfuhrm committed Jul 13, 2023
1 parent 6abf2bf commit abd0aae
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/maven-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Java Integration

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
integration:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -Pfailsafe -B package --file pom.xml

0 comments on commit abd0aae

Please sign in to comment.