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