Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Khole authored Jun 22, 2022
1 parent 9253428 commit 4e45f2f
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -477,16 +477,15 @@ jobs:
name: Check pylint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python ${{ env.DEFAULT_PYTHON }}
uses: actions/setup-python@v1
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
find . -name '*.py' -exec pylint --fail-under=10 {} \;
- uses: actions/checkout@v2
- name: Set up python ${{ env.DEFAULT_PYTHON }}
uses: actions/setup-python@v1
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
find . -name '*.py' -exec pylint --fail-under=10 {} \;

0 comments on commit 4e45f2f

Please sign in to comment.