Skip to content

cleanup / modernize packaging #34

cleanup / modernize packaging

cleanup / modernize packaging #34

Workflow file for this run

name: ci
on:
push:
paths:
- .github/workflows/ci.yml
- "**/*.py"
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.x']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e .[tests,lint]
- run: flake8
- run: mypy
- run: pytest