Skip to content

Add PyPI, CI, and python-version badges #3

Add PyPI, CI, and python-version badges

Add PyPI, CI, and python-version badges #3

Workflow file for this run

name: CI
on:
push: { branches: [main] }
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix: { python: ["3.9", "3.12", "3.13"] }
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with: { python-version: "${{ matrix.python }}" }
- run: python -m unittest discover -s tests -v