Skip to content

feat(deps): Bump singer-sdk from 0.42.0 to 0.43.1 #339

feat(deps): Bump singer-sdk from 0.42.0 to 0.43.1

feat(deps): Bump singer-sdk from 0.42.0 to 0.43.1 #339

Workflow file for this run

### A CI workflow template that runs linting and python testing
name: Test tap-planetscaleapi
on:
push:
branches: [main]
paths:
- .github/workflows/test.yml
- tap_planetscaleapi/**
- tests/**
- poetry.lock
- pyproject.toml
- tox.ini
pull_request:
branches: [main]
paths:
- .github/workflows/test.yml
- tap_planetscaleapi/**
- tests/**
- poetry.lock
- pyproject.toml
- tox.ini
schedule:
- cron: "0 10 * * *"
workflow_dispatch:
jobs:
pytest:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Poetry
run: |
pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
env:
TAP_PLANETSCALEAPI_SERVICE_TOKEN_ID: ${{ secrets.TAP_PLANETSCALEAPI_SERVICE_TOKEN_ID }}
TAP_PLANETSCALEAPI_SERVICE_TOKEN: ${{ secrets.TAP_PLANETSCALEAPI_SERVICE_TOKEN }}
run: |
poetry run pytest
- name: Static type checking
run: |
poetry run mypy tap_planetscaleapi