Skip to content

chore(repo): professionalize — contributing, templates, badges, metadata #12

chore(repo): professionalize — contributing, templates, badges, metadata

chore(repo): professionalize — contributing, templates, badges, metadata #12

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install pytest pytest-cov hypothesis
- run: python -m pytest -q --cov --cov-fail-under=100