We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53365fc commit 4655c7bCopy full SHA for 4655c7b
.github/workflows/build.yml
@@ -39,7 +39,7 @@ jobs:
39
- name: PyLint
40
run: |
41
pylint $( find . -path './adafruit*.py' )
42
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py)
+ ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace $( find . -path "./examples/*.py" ))
43
- name: Build assets
44
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
45
- name: Build docs
0 commit comments