Skip to content

Commit

Permalink
Update pylint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrokhtar authored Jun 30, 2024
1 parent 5d39658 commit fd33aed
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: Pylint
on: [push]

jobs:
build:
precommit-checks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9"]
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 pre-commit
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
pre-commit run --all-files
# pylint $(git ls-files '*.py')

0 comments on commit fd33aed

Please sign in to comment.