Skip to content

ci: fix trigger, use python 3.8, 3.12 #5

ci: fix trigger, use python 3.8, 3.12

ci: fix trigger, use python 3.8, 3.12 #5

Workflow file for this run

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