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

40 lines
1.1 KiB
YAML
Raw Permalink Normal View History

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