Skip to content

Bump urllib3 from 2.6.3 to 2.7.0 #79

Bump urllib3 from 2.6.3 to 2.7.0

Bump urllib3 from 2.6.3 to 2.7.0 #79

name: "Connectors: PostgreSQL"
on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Connectors/src/PostgreSql/**
- .github/workflows/postgresql.yml
- .github/workflows/shared-test-workflow.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true
jobs:
windows:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSql
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
linux:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Connectors
sample: PostgreSql
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}