Skip to content

Commit

Permalink
UPDATE pylint config for Retry decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
gelio5 committed May 27, 2024
1 parent 06ad953 commit 0597d5a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') --disable=logging-fstring-interpolation, broad-exception-raised
pylint $(git ls-files '*.py') --disable=logging-fstring-interpolation,broad-exception-raised

0 comments on commit 0597d5a

Please sign in to comment.