diff options
author | Simon Sawicki <contact@grub4k.xyz> | 2023-12-24 00:11:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 00:11:10 +0100 |
commit | 13b3cb3c2b7169a1e17d6fc62593bf744170521c (patch) | |
tree | fe0a6c4890dfeca999544c5af55f6c96e9ddf67d | |
parent | 0d531c35eca4c2eb36e160530a7a333edbc727cc (diff) |
[ci] Run core tests only for core changes (#8841)
Authored by: Grub4K
-rw-r--r-- | .github/workflows/core.yml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index b1ae4ae76..b22adb1b9 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -1,5 +1,25 @@ name: Core Tests -on: [push, pull_request] +on: + push: + paths: + - .github/** + - devscripts/** + - test/** + - yt_dlp/**.py + - '!yt_dlp/extractor/*.py' + - yt_dlp/extractor/__init__.py + - yt_dlp/extractor/common.py + - yt_dlp/extractor/extractors.py + pull_request: + paths: + - .github/** + - devscripts/** + - test/** + - yt_dlp/**.py + - '!yt_dlp/extractor/*.py' + - yt_dlp/extractor/__init__.py + - yt_dlp/extractor/common.py + - yt_dlp/extractor/extractors.py permissions: contents: read |