Skip to content

add publish pypi

add publish pypi #34

Workflow file for this run

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