Skip to content

Add doctor subcommand for diagnostics and self-upgrade, update docs and changelog #39

Add doctor subcommand for diagnostics and self-upgrade, update docs and changelog

Add doctor subcommand for diagnostics and self-upgrade, update docs and changelog #39

Workflow file for this run

name: Pytest
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install dependencies
run: uv sync --dev
- name: Run pytest
run: uv run pytest