Skip to content

chore(deps-dev): update singer-sdk requirement from ~=0.34.0 to ~=0.35.0 #381

chore(deps-dev): update singer-sdk requirement from ~=0.34.0 to ~=0.35.0

chore(deps-dev): update singer-sdk requirement from ~=0.34.0 to ~=0.35.0 #381

Workflow file for this run

name: Test tap-checkly
on:
push:
branches: [main]
paths:
- tap_checkly/**
- tests/**
- pyproject.toml
- .github/workflows/test.yml
- .github/workflows/constraints.txt
pull_request:
types: [opened, synchronize, reopened]
paths:
- tap_checkly/**
- tests/**
- pyproject.toml
- .github/workflows/test.yml
- .github/workflows/constraints.txt
jobs:
tests:
runs-on: ubuntu-latest
env:
FORCE_COLOR: "1"
PIP_CONSTRAINT: .github/workflows/constraints.txt
strategy:
fail-fast: false
matrix:
script: ["test:integration"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- { script: "test:dependencies", python-version: "3.12" }
- { script: "typing:check", python-version: "3.12" }
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Upgrade pip
run: |
pip install pip
pip --version
- name: Install Hatch
run: |
pipx install hatch --python "python${{ matrix.python-version }}"
hatch --version
- name: Run
env:
TAP_CHECKLY_ACCOUNT_ID: ${{ secrets.TAP_CHECKLY_ACCOUNT_ID }}
TAP_CHECKLY_TOKEN: ${{ secrets.TAP_CHECKLY_TOKEN }}
TAP_CHECKLY_START_DATE: ${{ secrets.TAP_CHECKLY_START_DATE }}
run: |
hatch run ${{ matrix.script }}