Skip to content

docs(readme): document subcommands, new flags, extras, library API an… #1

docs(readme): document subcommands, new flags, extras, library API an…

docs(readme): document subcommands, new flags, extras, library API an… #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
name: Lint and test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Lint with ruff
run: uv run --extra dev ruff check .
- name: Run tests
run: uv run --extra dev pytest