adamsaghy commented on code in PR #5313: URL: https://github.com/apache/fineract/pull/5313#discussion_r2681837665
########## .github/workflows/verify-liquibase-backward-compatibility.yml: ########## @@ -0,0 +1,163 @@ +name: Verify Liquibase Backward Compatibility + +on: [pull_request] + +permissions: + contents: read + +jobs: + liquibase-backward-compatibility-check: + runs-on: ubuntu-24.04 + timeout-minutes: 30 + + services: + postgresql: + image: postgres:17.4 + ports: + - 5432:5432 + env: + POSTGRES_USER: root + POSTGRES_PASSWORD: postgres + options: >- + --health-cmd="pg_isready -q -d postgres -U root" + --health-interval=5s + --health-timeout=2s + --health-retries=5 + + env: + DB_USER: root + DB_PASSWORD: postgres + DB_NAME: fineract_default + TZ: Asia/Kolkata + + steps: + - name: Checkout the base branch (`develop`) + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5 Review Comment: No, I think it would be safer to use the PR base repo and ref here... let me rework. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
