Skip to content

Commit 7765e2e

Browse files
committed
Build.yml now looks for examples in example subdirs
1 parent 0622753 commit 7765e2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ jobs:
4242
- name: PyLint
4343
run: |
4444
pylint $( find . -path './neopixel_spi.py' )
45-
([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py)
45+
([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace $( find . -path "./examples/*.py" ))
4646
- name: Build assets
4747
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
4848
- name: Build docs
4949
working-directory: docs
5050
run: sphinx-build -E -W -b html . _build/html
51+

0 commit comments

Comments
 (0)