Skip to content

Merge branch 'main' into 186-fr-support-of-extracting-results-to-to-m… #538

Merge branch 'main' into 186-fr-support-of-extracting-results-to-to-m…

Merge branch 'main' into 186-fr-support-of-extracting-results-to-to-m… #538

Workflow file for this run

name: Pylint
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint==3.1.0
- name: Running Pylint
run: |
pylint --rcfile=.pylintrc $(git ls-files '*.py')