Skip to content

v0.1.0 — initial release #5

v0.1.0 — initial release

v0.1.0 — initial release #5

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Add uv to PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Create venv + install
run: |
uv venv
uv pip install -e ".[dev]"
- name: Run tests
run: |
source .venv/bin/activate
pytest -q --tb=short
- name: Smoke CLI
run: |
source .venv/bin/activate
youtube-advisor --help
youtube-advisor bootstrap --help