We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0622753 commit 7765e2eCopy full SHA for 7765e2e
.github/workflows/build.yml
@@ -42,9 +42,10 @@ jobs:
42
- name: PyLint
43
run: |
44
pylint $( find . -path './neopixel_spi.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
49
working-directory: docs
50
run: sphinx-build -E -W -b html . _build/html
51
+
0 commit comments