Skip to content

Change license type, add changelog ref #13

Change license type, add changelog ref

Change license type, add changelog ref #13

Workflow file for this run

name: Pylint
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10" ]
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
- name: Analysing the code with pylint
run: |
pylint --disable=C0103,C0114,C0209,E0401,E1101,W0212,W0612,W1202,R1737,R0902 $(git ls-files 'src/')