We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 59cfa42 + e92bf97 commit ddcd1e7Copy full SHA for ddcd1e7
.github/workflows/build.yml
@@ -42,7 +42,7 @@ jobs:
42
- name: PyLint
43
run: |
44
pylint $( find . -path './adafruit*.py' )
45
- [ "$(ls -A examples/*.py)" ] && ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py) || ([[ ! -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