Skip to content

Test tap-csv

Test tap-csv #1488

Workflow file for this run

### A CI workflow template that runs linting and python testing
name: Test tap-csv
on:
push:
branches: [main]
paths:
- .github/workflows/ci_workflow.yml
- .github/workflows/constraints.txt
- tap_csv/**
- tap_csv/tests/** # TODO: move this out of the package dir
- poetry.lock
- pyproject.toml
- tox.ini
pull_request:
branches: [main]
paths:
- .github/workflows/ci_workflow.yml
- .github/workflows/constraints.txt
- tap_csv/**
- tap_csv/tests/** # TODO: move this out of the package dir
- poetry.lock
- pyproject.toml
- tox.ini
schedule:
- cron: "0 10 * * *"
workflow_dispatch:
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: 3.x
- uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
version: ">=0.4.20"
- name: Run lint command from tox.ini
run: |
uvx tox -e lint
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
with:
version: ">=0.4.20"
- name: Test with pytest
run: |
uvx tox -e py