feat: Bumped singer-sdk to v0.42.0 (#474) #1068
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: Test target-postgres | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- docker-compose.yml | |
- pyproject.toml | |
- poetry.lock | |
- target_postgres/** | |
- .github/workflows/ci_workflow.yml | |
push: | |
branches: [main] | |
paths: | |
- docker-compose.yml | |
- pyproject.toml | |
- poetry.lock | |
- target_postgres/** | |
- .github/workflows/ci_workflow.yml | |
workflow_dispatch: | |
inputs: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
tests: | |
name: Python ${{ matrix.python-version }} / Postgres ${{ matrix.postgres-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.13" | |
- "3.12" | |
- "3.11" | |
- "3.10" | |
- "3.9" | |
postgres-version: | |
- "17" | |
include: | |
- python-version: "3.13" | |
postgres-version: "12" | |
- python-version: "3.13" | |
postgres-version: "13" | |
- python-version: "3.13" | |
postgres-version: "14" | |
- python-version: "3.13" | |
postgres-version: "15" | |
- python-version: "3.13" | |
postgres-version: "16" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
- name: Fix key permissions | |
run: | | |
chmod 600 ssl/server.key | |
sudo chown 999:999 ssl/server.key | |
chmod 600 ssl/pkey.key | |
chmod 644 ssl/public_pkey.key | |
- name: Set up Postgres container | |
env: | |
POSTGRES_VERSION: ${{ matrix.postgres-version }} | |
run: | | |
docker compose -f docker-compose.yml up -d | |
- run: docker ps | |
- name: Set up Python '${{ matrix.python-version }}' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '${{ matrix.python-version }}' | |
- name: Install Poetry | |
env: | |
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt | |
run: | | |
python -m pip install --upgrade pip | |
pipx install tox | |
- name: Run pytest | |
run: | | |
tox -e $(echo py${{ matrix.python-version }} | tr -d .) | |
- name: Run lint | |
run: | | |
tox -e lint | |
integration: | |
name: Meltano integration test | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
env: | |
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt | |
run: | | |
python -m pip install --upgrade pip | |
pipx install meltano | |
meltano --version | |
- name: smoke-test-tap | |
run: meltano run tap-smoke-test target-postgres |