Skip to content

Commit

Permalink
Merge pull request #77 from liquibase/integration-tests
Browse files Browse the repository at this point in the history
chore: add integration tests support to build
  • Loading branch information
reta authored Nov 21, 2024
2 parents d10ef78 + 27393a3 commit 809e9fe
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,24 @@ jobs:
with:
java: "[ 17, 21 ]"

dependabot:
integration-tests:
name: Java ${{ matrix.java }}
runs-on: ubuntu-latest
needs: build-test
strategy:
matrix:
java: [17, 21]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Test With Maven
run: ./mvnw integration-test

dependabot:
needs: integration-tests
uses: liquibase/build-logic/.github/workflows/dependabot-automerge.yml@main
secrets: inherit

0 comments on commit 809e9fe

Please sign in to comment.