Skip to content

Bump org.liquibase:liquibase-core from 4.23.2 to 4.24.0 #284

Bump org.liquibase:liquibase-core from 4.23.2 to 4.24.0

Bump org.liquibase:liquibase-core from 4.23.2 to 4.24.0 #284

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- '**'
types:
- opened
- reopened
- synchronize
jobs:
integration-test:
name: Java ${{ matrix.java }}
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
matrix:
java: [8]
steps:
- uses: actions/checkout@v4
- name: Install Perl modules
run: |
sudo apt-get update
sudo apt-get install libdbd-mysql-perl
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Run Unit and Integration Tests With Maven
run: |
./mvnw --batch-mode --errors --no-transfer-progress --show-version \
clean verify -Prun-its