Skip to content

Commit

Permalink
Update and rename pylint.yml to lint-and-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-zdanevich authored Apr 28, 2024
1 parent eb5eb06 commit 912d6d3
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pylint
name: lint-and-test

on: [push]

Expand All @@ -17,7 +17,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install pylint pytest
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
- name: Running unit tests with pytest
run: |
pytest

0 comments on commit 912d6d3

Please sign in to comment.