2021-01-23 14:00:48 +05:30
|
|
|
name: Quick Test
|
2021-01-17 00:24:52 +05:30
|
|
|
on: [push, pull_request]
|
2022-11-10 03:41:07 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-01-08 02:16:48 +05:30
|
|
|
jobs:
|
|
|
|
tests:
|
2021-02-05 04:23:04 +05:30
|
|
|
name: Core Test
|
2021-01-23 14:00:48 +05:30
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
2021-01-08 02:16:48 +05:30
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-12 18:30:01 -06:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-30 22:27:36 +01:00
|
|
|
- name: Set up Python 3.8
|
2024-02-11 15:47:16 +01:00
|
|
|
uses: actions/setup-python@v5
|
2021-01-08 02:16:48 +05:30
|
|
|
with:
|
2023-12-30 22:27:36 +01:00
|
|
|
python-version: '3.8'
|
2021-07-21 21:32:49 +01:00
|
|
|
- name: Install test requirements
|
2024-05-26 21:27:21 +02:00
|
|
|
run: python3 ./devscripts/install_deps.py --include test
|
2021-01-08 02:16:48 +05:30
|
|
|
- name: Run tests
|
2024-08-21 19:17:26 +12:00
|
|
|
timeout-minutes: 15
|
2022-11-30 11:34:51 +05:30
|
|
|
run: |
|
|
|
|
python3 -m yt_dlp -v || true
|
2023-12-26 18:30:04 +01:00
|
|
|
python3 ./devscripts/run_tests.py core
|
2024-05-26 21:27:21 +02:00
|
|
|
check:
|
|
|
|
name: Code check
|
2021-01-23 14:00:48 +05:30
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
2021-01-08 02:16:48 +05:30
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-11-12 18:30:01 -06:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-11 15:47:16 +01:00
|
|
|
- uses: actions/setup-python@v5
|
2024-04-09 11:12:26 -05:00
|
|
|
with:
|
|
|
|
python-version: '3.8'
|
2024-05-26 21:27:21 +02:00
|
|
|
- name: Install dev dependencies
|
|
|
|
run: python3 ./devscripts/install_deps.py -o --include static-analysis
|
2021-08-23 00:49:23 +05:30
|
|
|
- name: Make lazy extractors
|
2024-02-11 15:17:08 +01:00
|
|
|
run: python3 ./devscripts/make_lazy_extractors.py
|
2024-05-26 21:27:21 +02:00
|
|
|
- name: Run ruff
|
|
|
|
run: ruff check --output-format github .
|
|
|
|
- name: Run autopep8
|
|
|
|
run: autopep8 --diff .
|