Skip to content

Commit

Permalink
Github Action Bugfix: actions/starter-workflows#636
Browse files Browse the repository at this point in the history
  • Loading branch information
fahadahammed committed Dec 21, 2021
1 parent 62f5beb commit 1bf228c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
pip install pylint poetry
- name: Analysing the code with pylint
run: |
pylint `ls -R|grep .py$|xargs`
pylint $(find . -name "*.py" | xargs)
- name: Check via Poetry
run: poetry check
- name: Test Via Unittest Module
Expand Down

0 comments on commit 1bf228c

Please sign in to comment.