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