Skip to content

Commit f887bc7

Browse files
committed
Update CI-pylint.yml
1 parent a57fcd3 commit f887bc7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/CI-pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
jobs:
1616
lint:
1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
python-version: [3.8, 3.9, 3.10.12, 3.11.0]
2021
runs-on: ubuntu-latest
@@ -33,5 +34,4 @@ jobs:
3334
pip install .[test]
3435
3536
- name: Pylint Source
36-
run: |
37-
find . -type f -name '*.py' | grep -v './build/' | xargs pylint --extension-pkg-whitelist='pydantic'
37+
run: pylint --ignore-paths='build/*' $(find . -type f -name '*.py')

0 commit comments

Comments
 (0)