package creation
All checks were successful
Analyze code and publish script / Analyze code (push) Successful in 12s
Analyze code and publish script / Publish script (push) Successful in 22s

This commit is contained in:
2026-02-09 11:48:25 +01:00
Unverified
parent 5e06775882
commit 0aab84ca95
5 changed files with 20 additions and 11 deletions

View File

@@ -5,13 +5,15 @@ on:
branches:
- "dev"
paths:
- "cdl_downloader**"
- "src**"
- "requirements.txt"
pull_request:
branches:
- "dev"
- "main"
paths:
- "cdl_downloader**"
- "src**"
- "requirements.txt"
jobs:
analyze:
@@ -26,7 +28,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r cdl_downloader/requirements.txt
pip install -r requirements.txt
pip install pylint
- name: Analysing the code with pylint
run: pylint --exit-zero $(git ls-files 'cdl_downloader/*.py')
run: pylint --exit-zero $(git ls-files 'src/*.py')