Skip to content

Enhance cli.py with type annotations πŸŽ‰ #76

Enhance cli.py with type annotations πŸŽ‰

Enhance cli.py with type annotations πŸŽ‰ #76

Workflow file for this run

name: πŸ§ͺ Cli testing
on:
push:
branches:
- "**"
paths:
- cli/**
- .github/workflows/test-cli.yml
defaults:
run:
working-directory: cli
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Run tests
run: |
uv sync --all-extras --dev
uv run pytest