Skip to content

Update GitHub Actions workflows and user.py*** #29

Update GitHub Actions workflows and user.py***

Update GitHub Actions workflows and user.py*** #29

Workflow file for this run

name: Pylint with various Python versions
on: [push]
jobs:
lint:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Define a cache for the virtual environment based on the dependencies lock file
uses: actions/cache@v3
with:
path: ./.venv
key: venv-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
- name: Install project dependencies
run: |
python -m pip install --upgrade pip
pip install pylint poetry
python -m poetry config virtualenvs.in-project true
python -m poetry install --only main
- name: Analysing the code with pylint
run: |
pylint --exit-zero -d C0301 --output-format=text:pylint_score.txt,colorized "./app"