Skip to content

chore: pre-commit autoupdate #20

chore: pre-commit autoupdate

chore: pre-commit autoupdate #20

Workflow file for this run

### A CI workflow template that runs linting and python testing
### TODO: Modify as needed or as desired.
name: Test mapper-fivetran
on:
push:
branches: [main]
paths:
- .github/workflows/test.yml
- mapper_fivetran/**
- tests/**
- pyproject.toml
- uv.lock
pull_request:
branches: [main]
paths:
- .github/workflows/test.yml
- mapper_fivetran/**
- tests/**
- pyproject.toml
- uv.lock
workflow_dispatch:
env:
FORCE_COLOR: 1
jobs:
pytest:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Test with pytest
env:
UV_PYTHON: ${{ matrix.python-version }}
run: |
uv run pytest