Skip to content

ci:checkout

ci:checkout #89

Workflow file for this run

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