Skip to content

fix: Fix start_date retrieval #212

fix: Fix start_date retrieval

fix: Fix start_date retrieval #212

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.8", "3.9", "3.10", "3.11", "3.12"]
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 }}
run: |
poetry run pytest