summaryrefslogtreecommitdiffstats
path: root/.github/workflows/quick-test.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:49:24 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:49:24 +0000
commit2415e66f889f38503b73e8ebc5f43ca342390e5c (patch)
treeac48ab69d1d96bae3d83756134921e0d90593aa5 /.github/workflows/quick-test.yml
parentInitial commit. (diff)
downloadyt-dlp-2415e66f889f38503b73e8ebc5f43ca342390e5c.tar.xz
yt-dlp-2415e66f889f38503b73e8ebc5f43ca342390e5c.zip
Adding upstream version 2024.03.10.upstream/2024.03.10
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows/quick-test.yml')
-rw-r--r--.github/workflows/quick-test.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/quick-test.yml b/.github/workflows/quick-test.yml
new file mode 100644
index 0000000..3114e7b
--- /dev/null
+++ b/.github/workflows/quick-test.yml
@@ -0,0 +1,35 @@
+name: Quick Test
+on: [push, pull_request]
+permissions:
+ contents: read
+
+jobs:
+ tests:
+ name: Core Test
+ if: "!contains(github.event.head_commit.message, 'ci skip all')"
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up Python 3.8
+ uses: actions/setup-python@v5
+ with:
+ python-version: '3.8'
+ - name: Install test requirements
+ run: python3 ./devscripts/install_deps.py --include dev
+ - name: Run tests
+ run: |
+ python3 -m yt_dlp -v || true
+ python3 ./devscripts/run_tests.py core
+ flake8:
+ name: Linter
+ if: "!contains(github.event.head_commit.message, 'ci skip all')"
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
+ - name: Install flake8
+ run: python3 ./devscripts/install_deps.py -o --include dev
+ - name: Make lazy extractors
+ run: python3 ./devscripts/make_lazy_extractors.py
+ - name: Run flake8
+ run: flake8 .