mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 16:01:27 +01:00
67adeb7bab
- Add Python 3.13 to CI, finalize 3.13 support - Remove Python 3.8 from CI in preparation for removing 3.8 support - Document that PyPy3.8 and PyPy3.9 are no longer supported - Usual documentation fixes and code cleanup Closes #8248, Closes #11146, Closes #11149, Closes #11211 Authored by: Grub4K, grqz, DTrombett, KarboniteKream, bashonly, mikkovedru, seproDev Co-authored-by: N/Ame <173015200+grqz@users.noreply.github.com> Co-authored-by: DTrombett <d@trombett.org> Co-authored-by: =?UTF-8?q?Klemen=20Ko=C5=A1ir?= <klemen.kosir@kream.io> Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com> Co-authored-by: Mikko Vedru <mikko.vedru@gmail.com> Co-authored-by: sepro <sepro@sepr0.com>
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
name: Quick Test
|
|
on: [push, pull_request]
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
tests:
|
|
name: Core Test
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python 3.9
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.9'
|
|
- name: Install test requirements
|
|
run: python3 ./devscripts/install_deps.py -o --include test
|
|
- name: Run tests
|
|
timeout-minutes: 15
|
|
run: |
|
|
python3 -m yt_dlp -v || true
|
|
python3 ./devscripts/run_tests.py --pytest-args '--reruns 2 --reruns-delay 3.0' core
|
|
check:
|
|
name: Code check
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.9'
|
|
- name: Install dev dependencies
|
|
run: python3 ./devscripts/install_deps.py -o --include static-analysis
|
|
- name: Make lazy extractors
|
|
run: python3 ./devscripts/make_lazy_extractors.py
|
|
- name: Run ruff
|
|
run: ruff check --output-format github .
|
|
- name: Run autopep8
|
|
run: autopep8 --diff .
|