Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Bump pylint action to python 3.12 #78

Bump pylint action to python 3.12

Bump pylint action to python 3.12 #78

Workflow file for this run

name: Pylint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- 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 `ls -R|grep .py$|xargs`