Skip to content

feat(deps): Bump singer-sdk from 0.44.0 to 0.44.1 in the runtime-depe… #510

feat(deps): Bump singer-sdk from 0.44.0 to 0.44.1 in the runtime-depe…

feat(deps): Bump singer-sdk from 0.44.0 to 0.44.1 in the runtime-depe… #510

Workflow file for this run

name: Test tap-smoke-test
on: [push]
env:
FORCE_COLOR: "1"
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
env:
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt
steps:
- uses: actions/checkout@v4
- name: Set up Python '${{ matrix.python-version }}'
uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install
- name: Test with pytest
run: |
poetry run pytest --capture=no