Skip to content

Bump liquibase/build-logic from 0.7.5 to 0.7.6 #52

Bump liquibase/build-logic from 0.7.5 to 0.7.6

Bump liquibase/build-logic from 0.7.5 to 0.7.6 #52

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
build-test:
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.7.6
secrets: inherit
integration-test:
name: Test Harness for Teradata ${{ matrix.teradata }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
teradata: [ "" ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: Build Cache
uses: actions/cache@v3.3.3
with:
key: build-${{ github.run_number }}-${{ github.run_attempt }}
path: |
**/target/**
~/.m2/repository/org/liquibase/
- name: Run Tests
run: mvn -B jacoco:prepare-agent surefire:test -Dteradata.version=${{ matrix.teradata }}
- name: Archive Test Results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: test-reports-teradata-${{ matrix.teradata }}
path: |
**/target/surefire-reports
**/target/jacoco.exec
dependabot-automerge:
needs: build-test
uses: liquibase/build-logic/.github/workflows/dependabot-automerge.yml@v0.7.6
secrets: inherit