mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
060ac76257
`nosetests` is no longer being maintained : https://github.com/nose-devs/nose/issues/1099 and will stop working in py 3.10 as can be seen in #480
32 lines
831 B
YAML
32 lines
831 B
YAML
name: Quick Test
|
|
on: [push, pull_request]
|
|
jobs:
|
|
tests:
|
|
name: Core Test
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
|
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 test requirements
|
|
run: pip install pytest pycryptodome
|
|
- name: Run tests
|
|
run: ./devscripts/run_tests.sh core
|
|
flake8:
|
|
name: Linter
|
|
if: "!contains(github.event.head_commit.message, 'ci skip all')"
|
|
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 .
|