1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-10-02 23:47:08 +02:00
yt-dlp/.github/workflows/quick-test.yml

41 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2021-01-23 09:30:48 +01:00
name: Quick Test
2021-01-16 19:54:52 +01:00
on: [push, pull_request]
permissions:
contents: read
2021-01-07 21:46:48 +01:00
jobs:
tests:
2021-02-04 23:53:04 +01:00
name: Core Test
2021-01-23 09:30:48 +01:00
if: "!contains(github.event.head_commit.message, 'ci skip all')"
2021-01-07 21:46:48 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
2021-01-07 21:46:48 +01:00
with:
python-version: '3.8'
- name: Install test requirements
run: python3 ./devscripts/install_deps.py -o --include test
2021-01-07 21:46:48 +01:00
- name: Run tests
timeout-minutes: 15
2022-11-30 07:04:51 +01:00
run: |
python3 -m yt_dlp -v || true
2024-10-01 00:33:17 +02:00
python3 ./devscripts/run_tests.py --pytest-args '--reruns 2 --reruns-delay 3.0' core
check:
name: Code check
2021-01-23 09:30:48 +01:00
if: "!contains(github.event.head_commit.message, 'ci skip all')"
2021-01-07 21:46:48 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
- 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 .