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