From 9e2b249e5f6d57d55494c408e0ea726c948b8d60 Mon Sep 17 00:00:00 2001 From: mateuszskoczek Date: Tue, 3 Feb 2026 23:11:58 +0100 Subject: [PATCH] Update .gitea/workflows/analyze.yml --- .gitea/workflows/analyze.yml | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/analyze.yml b/.gitea/workflows/analyze.yml index 86f1c5d..272f5a6 100644 --- a/.gitea/workflows/analyze.yml +++ b/.gitea/workflows/analyze.yml @@ -15,19 +15,18 @@ on: jobs: analyze: + name: Analyze code 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: - python-version: "3.10" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install pylint - - name: Analysing the code with pylint - run: pylint --exit-zero $(git ls-files '*.py') \ No newline at end of file + - name: Checkout + uses: actions/checkout@v6 + - name: Set up Python + uses: actions/setup-python@v6 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r cdl_downloader/requirements.txt + pip install pylint + - name: Analysing the code with pylint + run: pylint --exit-zero $(git ls-files 'cdl_downloader/*.py') \ No newline at end of file