Skip to content

dynamic version

dynamic version #36

Workflow file for this run

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