-
Notifications
You must be signed in to change notification settings - Fork 248
53 lines (50 loc) · 1.59 KB
/
Connectors-PostgreSql.yml
File metadata and controls
53 lines (50 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
- environment.py
- pysteel/**
- steps/**
- 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 }}