Skip to content

Switch from pafy to streamlink for youtube support #15

Switch from pafy to streamlink for youtube support

Switch from pafy to streamlink for youtube support #15

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ main ]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install python
run: uv python install 3.11
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest