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