Skip to content

Fix report crash on headerless raw CSV #9

Fix report crash on headerless raw CSV

Fix report crash on headerless raw CSV #9

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Test
run: pytest
- name: Lint
run: ruff check src tests
- name: Type check
run: mypy src