✨29779 source postgres slow ctid read seen on customer connection #537
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Measure Java Test Coverage | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "airbyte-integrations/connectors/source-postgres/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "17" | |
- name: Publish CDK to MavenLocal | |
run: | | |
./gradlew :airbyte-cdk:java:airbyte-cdk:publishSnapshotIfNeeded | |
- name: Run Coverage | |
run: | | |
./gradlew :airbyte-integrations:connectors:source-postgres:jacocoTestReport | |
- name: Add coverage to PR | |
id: jacoco | |
uses: madrapps/[email protected] | |
with: | |
paths: ${{ github.workspace }}/airbyte-integrations/connectors/source-postgres/build/reports/jacoco/test/jacocoTestReport.xml | |
token: ${{ secrets.GITHUB_TOKEN }} | |
min-coverage-overall: 64 | |
title: Coverage report for source-postgres | |
update-comment: true |