Skip to content

feat: Use sorted API requests to support crash tolerant incremental sync #105

feat: Use sorted API requests to support crash tolerant incremental sync

feat: Use sorted API requests to support crash tolerant incremental sync #105

Workflow file for this run

name: Test tap-klaviyo
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- "tap_klaviyo/**"
- "tests/**"
- "pyproject.toml"
- "poetry.lock"
- ".github/workflows/ci_workflow.yml"
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
env:
TAP_KLAVIYO_AUTH_TOKEN: ${{ secrets.TAP_KLAVIYO_AUTH_TOKEN }}
TAP_KLAVIYO_REVISION: ${{ secrets.TAP_KLAVIYO_REVISION }}
run: |
poetry run pytest