docs: bump min yt-dlp version to 2024.09.27 #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install test requirements | |
run: python -m pip install --upgrade pytest hatchling && python -m pip install --upgrade --pre yt-dlp | |
- name: Run tests | |
run: | | |
python -m pytest |