Skip to content

Add README, verify examples from README works, bump version #3

Add README, verify examples from README works, bump version

Add README, verify examples from README works, bump version #3

Workflow file for this run

name: check
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
pre_commit:
name: Pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- uses: pre-commit/[email protected]
test:
name: Test on Python ${{ matrix.py }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
- "3.9"
steps:
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- uses: actions/checkout@v5
- name: Install tox-gh
run: python -m pip install tox-gh
- name: Run test suite
run: tox