yt-dlp/.github/workflows/quick-test.yml

41 lines
1.1 KiB
YAML
Raw Normal View History

2021-01-23 14:00:48 +05:30
name: Quick Test
2021-01-17 00:24:52 +05:30
on: [push, pull_request]
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:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
2021-01-08 02:16:48 +05:30
with:
python-version: '3.8'
- name: Install test requirements
run: python3 ./devscripts/install_deps.py --include test
2021-01-08 02:16:48 +05:30
- name: Run tests
timeout-minutes: 15
2022-11-30 11:34:51 +05:30
run: |
python3 -m yt_dlp -v || true
python3 ./devscripts/run_tests.py core
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:
- 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 .