Skip to content

feat: Add help command #305

feat: Add help command

feat: Add help command #305

Workflow file for this run

on:
push:
paths-ignore:
- 'docs/**'
- 'debian/**'
- 'rpm/**'
- 'README.md'
pull_request:
name: CI
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Install dependencies
run: |
uv sync --all-extras --dev
- name: Test
run: uv run pytest -vv tests