Skip to content

updated readme

updated readme #14

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'windows-latest' }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.10"
- "3.12"
- "3.13"
- "3.13t"
# NOTE: Example for excluding specific python versions for an different OS's.
# exclude:
# - os: windows-latest
# python-version: 3.6
# - os: macos-latest
# python-version: 3.8
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest -s