Skip to content

chore(deps): bump singer-sdk from 0.28.0 to 0.29.0 (#15) #46

chore(deps): bump singer-sdk from 0.28.0 to 0.29.0 (#15)

chore(deps): bump singer-sdk from 0.28.0 to 0.29.0 (#15) #46

Workflow file for this run

### A CI workflow template that runs linting and python testing
name: Test
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
pytest:
runs-on: ubuntu-latest
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install pip
pip --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
env:
TAP_CIRCLE_CI_TOKEN: ${{ secrets.TAP_CIRCLE_CI_TOKEN }}
TAP_CIRCLE_CI_ORG_SLUG: ${{ secrets.TAP_CIRCLE_CI_ORG_SLUG }}
run: |
poetry run pytest