Skip to content

remove badge

remove badge #38

Workflow file for this run

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