Skip to content

Bump setuptools from 70.1.1 to 70.2.0 #3445

Bump setuptools from 70.1.1 to 70.2.0

Bump setuptools from 70.1.1 to 70.2.0 #3445

Workflow file for this run

name: Pylint
on:
push:
pull_request:
merge_group:
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
- name: Install dependencies
run: |
pip install --upgrade pip
python -m pip install --upgrade poetry
poetry install
- name: Analysing the code with pylint
run: |
poetry run pylint mirar --fail-under=9.80