Skip to content

[#0] make function length checker do its own thing #8

[#0] make function length checker do its own thing

[#0] make function length checker do its own thing #8

Workflow file for this run

name: Check Indentation Depth
on:
push:
branches: [ '*' ]
pull_request:
branches: [ main ]
jobs:
check-indent:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install pylint
run: pip install pylint
- name: Create pylint config
run: |
echo "[FORMAT]" > .pylintrc
echo "max-nested-blocks=2" >> .pylintrc
echo "[MESSAGES CONTROL]" >> .pylintrc
echo "disable=all" >> .pylintrc
echo "enable=format" >> .pylintrc
- name: Run pylint
run: pylint --rcfile=.pylintrc src/