diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 8c7f03a..4d5f078 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -14,10 +14,16 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + # Install pip and pipenv - name: Install dependencies run: | + python -m pip install --upgrade pip pip install pipenv - pipenv install + + # Install project dependencies using pipenv + - name: Install dependencies from Pipfile + run: | + pipenv install --dev - name: Analysing the code with pylint run: | pylint $(find . -type f -name "*.py" ! -path "./ui/*")