Skip to content

Commit

Permalink
Configurando pylint e formatando arquivos
Browse files Browse the repository at this point in the history
  • Loading branch information
JN513 committed Nov 20, 2024
1 parent a2d6a3b commit 38b890a
Show file tree
Hide file tree
Showing 16 changed files with 1,265 additions and 506 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -18,6 +18,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
pylint $(git ls-files '*.py' ':!utils/*') --max-locals=30 \
--disable=duplicate-code,import-error
Loading

0 comments on commit 38b890a

Please sign in to comment.