2021-01-23 01:30:48 -07:00
|
|
|
name: Quick Test
|
2021-01-16 11:54:52 -07:00
|
|
|
on: [push, pull_request]
|
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:
|
|
|
|
- uses: actions/checkout@v2
|
2021-01-23 01:30:48 -07:00
|
|
|
- name: Set up Python
|
2021-01-07 13:46:48 -07:00
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
2021-07-21 14:32:49 -06:00
|
|
|
- name: Install test requirements
|
2021-10-05 11:37:58 -06:00
|
|
|
run: pip install pytest pycryptodomex
|
2021-01-07 13:46:48 -07:00
|
|
|
- name: Run tests
|
2021-07-23 08:48:15 -06:00
|
|
|
run: ./devscripts/run_tests.sh core
|
2021-01-07 13:46:48 -07:00
|
|
|
flake8:
|
|
|
|
name: Linter
|
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:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- name: Install flake8
|
|
|
|
run: pip install flake8
|
2021-08-22 13:19:23 -06:00
|
|
|
- name: Make lazy extractors
|
|
|
|
run: python devscripts/make_lazy_extractors.py yt_dlp/extractor/lazy_extractors.py
|
2021-01-07 13:46:48 -07:00
|
|
|
- name: Run flake8
|
2021-07-23 08:48:15 -06:00
|
|
|
run: flake8 .
|