Skip to content

Bump pylint from 3.3.9 to 4.0.0 #71

Bump pylint from 3.3.9 to 4.0.0

Bump pylint from 3.3.9 to 4.0.0 #71

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv==2022.1.8
- name: Install requirements
run: pipenv install --dev
- name: Lint
run: pipenv run lint
- name: Codestyle
run: pipenv run codestyle