Skip to content

docs: fix examples

docs: fix examples #6

Workflow file for this run

name: Python package
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
pull_request:
jobs:
cqa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
cache-dependency-path: '**/pyproject.yaml'
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install --use-deprecated=legacy-resolver -e .[dev]
- name: Format check with Ruff
run: |
ruff format --check .