Skip to content

Commit

Permalink
Merge pull request #36 from adafruit/dherrada-patch-1
Browse files Browse the repository at this point in the history
Changed build.yml to have the correct examples linting command
  • Loading branch information
siddacious committed Jan 10, 2020
2 parents 59cfa42 + e92bf97 commit ddcd1e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: PyLint
run: |
pylint $( find . -path './adafruit*.py' )
[ "$(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" ))
- name: Build assets
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
- name: Build docs
Expand Down

0 comments on commit ddcd1e7

Please sign in to comment.