Skip to content

Reorganizes tests by package structure #12

Reorganizes tests by package structure

Reorganizes tests by package structure #12

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
lint:
name: Lint (flake8)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- name: Install
run: |
python -m pip install -U pip
python -m pip install -e ".[dev]"
- name: Flake8
run: flake8
test:
name: Tests (pytest)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: |
python -m pip install -U pip
python -m pip install -e ".[dev]"
- name: Pytest
run: pytest