We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d7bb01 commit e8f72b0Copy full SHA for e8f72b0
.github/workflows/build.yml
@@ -42,7 +42,7 @@ jobs:
42
- name: PyLint
43
run: |
44
pylint $( find . -path './adafruit*.py' )
45
- ([[ ! -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" ))
46
- name: Build assets
47
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
48
- name: Build docs
0 commit comments