From 3c42a004167e81507788a16a55e62e49ee549e68 Mon Sep 17 00:00:00 2001 From: mateuszskoczek Date: Tue, 3 Feb 2026 23:12:28 +0100 Subject: [PATCH] Update .gitea/workflows/analyze_and_publish.yml --- .gitea/workflows/analyze_and_publish.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/analyze_and_publish.yml b/.gitea/workflows/analyze_and_publish.yml index 0c89429..04912fd 100644 --- a/.gitea/workflows/analyze_and_publish.yml +++ b/.gitea/workflows/analyze_and_publish.yml @@ -13,8 +13,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v6 - - name: Go to app directory - run: cd cdl_downloader - name: Set up Python uses: actions/setup-python@v6 with: @@ -22,10 +20,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt + pip install -r cdl_downloader/requirements.txt pip install pylint - name: Analysing the code with pylint - run: pylint --exit-zero $(git ls-files '*.py') + run: pylint --exit-zero $(git ls-files 'cdl_downloader/*.py') publish: name: Publish script needs: analyze