Skip to content

test: add composite NULL conflict + bare identifier SET regression tests #126

test: add composite NULL conflict + bare identifier SET regression tests

test: add composite NULL conflict + bare identifier SET regression tests #126

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev,pandas]"
- name: Run tests with coverage
run: pytest tests/ -v --cov=excel_dbapi --cov-report=xml --cov-report=term-missing
- name: Upload coverage to Codecov
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v6
with:
files: coverage.xml
fail_ci_if_error: false
- name: Run ruff
run: ruff check src/
- name: Run ruff format check
run: ruff format --check src/
- name: Run mypy strict
run: mypy --strict src/