Skip to content

ci template

ci template #8

Workflow file for this run

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