From 49e5d678642ad9798da36dec2232b67fa504615d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 21:18:55 +0000 Subject: [PATCH 1/2] chore(deps): bump org.liquibase:liquibase-parent-pom from 0.5.0 to 0.5.1 Bumps [org.liquibase:liquibase-parent-pom](https://github.com/liquibase/liquibase-parent-pom) from 0.5.0 to 0.5.1. - [Release notes](https://github.com/liquibase/liquibase-parent-pom/releases) - [Commits](https://github.com/liquibase/liquibase-parent-pom/compare/v0.5.0...v0.5.1) --- updated-dependencies: - dependency-name: org.liquibase:liquibase-parent-pom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2de52c1c..68d4c93c 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.liquibase liquibase-parent-pom - 0.5.0 + 0.5.1 org.liquibase.ext From 23d57f6a384d9a68b40f60cbe6f15f4c71d72bdc Mon Sep 17 00:00:00 2001 From: Daniel Mallorga <75833793+MalloD12@users.noreply.github.com> Date: Mon, 9 Dec 2024 15:54:47 -0300 Subject: [PATCH 2/2] Build test configuration update to make test executed (#731) * Build test configuration update to make test executed. * Apply the same test configuration update for compatibility tests. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e930355..987b9d54 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Build and Test + name: Build and Test on: workflow_dispatch: @@ -52,10 +52,10 @@ jobs: cache: 'maven' - name: Run Compatibility Tests - run: mvn -B jacoco:prepare-agent surefire:test -Dhibernate.version=${{ matrix.hibernate }} + run: mvn -B clean test -Dhibernate.version=${{ matrix.hibernate }} verify - name: Run Tests - run: mvn -B jacoco:prepare-agent surefire:test + run: mvn -B clean test verify - name: Archive Test Results if: ${{ always() }}