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:
|
|
|
|
name: Core Tests
|
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
|
|
|
|
- name: Install nose
|
|
|
|
run: pip install nose
|
|
|
|
- name: Run tests
|
|
|
|
env:
|
|
|
|
YTDL_TEST_SET: core
|
|
|
|
run: ./devscripts/run_tests.sh
|
|
|
|
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
|
|
|
|
- name: Run flake8
|
|
|
|
run: flake8 .
|