Skip to content

fixed a case-senstive case #578

fixed a case-senstive case

fixed a case-senstive case #578

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
- name: Running Pylint
run: |
pylint --rcfile=.pylintrc $(git ls-files '*.py')