feat(deps): Update singer-sdk requirement from ~=0.42.1 to ~=0.43.1 #625
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-readthedocs | |
on: | |
push: | |
branches: [main] | |
paths: | |
- tap_readthedocs/** | |
- tests/** | |
- pyproject.toml | |
- .github/workflows/test.yml | |
- .github/workflows/constraints.txt | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- tap_readthedocs/** | |
- tests/** | |
- pyproject.toml | |
- .github/workflows/test.yml | |
- .github/workflows/constraints.txt | |
workflow_dispatch: | |
schedule: | |
# Every 4 days at 12:00 UTC | |
- cron: "0 12 */4 * *" | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
env: | |
FORCE_COLOR: "1" | |
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt | |
strategy: | |
fail-fast: false | |
matrix: | |
script: ["test:integration"] | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
include: | |
- { script: "test:dependencies", python-version: "3.x" } | |
- { script: "typing:check", python-version: "3.x" } | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
id: setup-python | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
cache: pip | |
- name: Upgrade pip | |
run: | | |
pip install pip | |
pip --version | |
- name: Install Hatch | |
run: | | |
pipx install hatch | |
hatch --version | |
- name: Run | |
env: | |
HATCH_PYTHON: ${{ steps.setup-python.outputs.python-path }} | |
TAP_READTHEDOCS_TOKEN: ${{ secrets.TAP_READTHEDOCS_TOKEN }} | |
run: | | |
hatch run ${{ matrix.script }} |