Skip to content

Bump org.liquibase:liquibase-core from 4.23.0 to 4.23.1 #261

Bump org.liquibase:liquibase-core from 4.23.0 to 4.23.1

Bump org.liquibase:liquibase-core from 4.23.0 to 4.23.1 #261

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
strategy:
matrix:
java: [8]
steps:
- uses: actions/checkout@v3
- 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