Skip to content

test: update tests to new package structure #10

test: update tests to new package structure

test: update tests to new package structure #10

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
name: Lint, Type Check & Test (Python ${{ matrix.python-version }})
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install hatch and create env
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Run linting
run: hatch run lint
- name: Run type check
run: hatch run type-check
- name: Run tests (no coverage)
run: hatch run test