Skip to content

Bump yt-dlp from 2024.8.6 to 2024.9.27 #15

Bump yt-dlp from 2024.8.6 to 2024.9.27

Bump yt-dlp from 2024.8.6 to 2024.9.27 #15

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run python -m unittest discover