feat(deps): bump singer-sdk from 0.33.0 to 0.33.1 #585
Workflow file for this run
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 Tap | |
on: | |
pull_request: | |
paths-ignore: | |
- '**/README.md' | |
push: | |
branches: [main] | |
paths-ignore: | |
- '**/README.md' | |
jobs: | |
test_tap: | |
name: Test Tap connectivity and Configuration | |
runs-on: ubuntu-latest | |
env: | |
PIP_CONSTRAINT: .github/workflows/constraints.txt | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install Poetry | |
run: | | |
pipx install poetry | |
poetry --version | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Test tap | |
run: | | |
poetry run pytest |