1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-01-18 14:53:04 +01:00
yt-dlp/.github/workflows/download.yml

49 lines
1.4 KiB
YAML
Raw Normal View History

2021-01-23 14:00:48 +05:30
name: Download Tests
2021-01-17 00:24:52 +05:30
on: [push, pull_request]
permissions:
contents: read
2021-01-07 12:11:05 +05:30
jobs:
quick:
name: Quick Download Tests
if: "contains(github.event.head_commit.message, 'ci run dl')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install test requirements
run: python3 ./devscripts/install_deps.py --include dev
- name: Run tests
continue-on-error: true
run: python3 ./devscripts/run_tests.py download
full:
name: Full Download Tests
if: "contains(github.event.head_commit.message, 'ci run dl all')"
2021-01-07 12:11:05 +05:30
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
python-version: ['3.10', '3.11', '3.12', '3.13', pypy-3.10]
2021-01-07 12:11:05 +05:30
include:
# atleast one of each CPython/PyPy tests must be in windows
2021-01-07 12:11:05 +05:30
- os: windows-latest
python-version: '3.9'
- os: windows-latest
python-version: pypy-3.10
2021-01-07 12:11:05 +05:30
steps:
- uses: actions/checkout@v4
2021-01-07 12:11:05 +05:30
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
2021-01-07 12:11:05 +05:30
with:
python-version: ${{ matrix.python-version }}
- name: Install test requirements
run: python3 ./devscripts/install_deps.py --include dev
2021-01-07 12:11:05 +05:30
- name: Run tests
continue-on-error: true
run: python3 ./devscripts/run_tests.py download