Skip to content

chore(deps): bump org.liquibase:liquibase-parent-pom from 0.5.0 to 0.5.2 #711

chore(deps): bump org.liquibase:liquibase-parent-pom from 0.5.0 to 0.5.2

chore(deps): bump org.liquibase:liquibase-parent-pom from 0.5.0 to 0.5.2 #711

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
pull_request_target:
types:
- opened
- reopened
- synchronize
paths-ignore:
- 'documentation.Dockerfile'
- 'documentation.dockerignore'
- 'mkdocs.yml'
- 'docs/**'
permissions:
contents: write
pull-requests: write
jobs:
authorize:
environment: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
runs-on: ubuntu-latest
steps:
- run: true
build-test:
needs: authorize
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@main
secrets: inherit
integration-test:
needs: build-test
name: Java ${{ matrix.java }} | Neo4j ${{ matrix.neo4j_version }} (EE? ${{ matrix.enterprise }})
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 17, 21]
neo4j_version:
- "3.5"
- "4.0"
- "4.1"
- "4.2"
- "4.3"
- "4.4"
- "5"
enterprise:
- "true"
- "false"
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Run Tests
run: mvn --quiet --show-version --batch-mode verify
env:
NEO4J_VERSION: ${{ matrix.neo4j_version }}
ENTERPRISE: ${{ matrix.enterprise }}