Skip to content

added pylint global-statement disable #3

added pylint global-statement disable

added pylint global-statement disable #3

Workflow file for this run

name: Pylint
on:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install mido
pip install ctype
pip install argparse
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')