File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
{{ cookiecutter.library_name }}/.github/workflows Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,13 +43,13 @@ jobs:
43
43
pip install --force-reinstall pylint black==19.10b0 Sphinx sphinx-rtd-theme
44
44
- name : Library version
45
45
run : git describe --dirty --always --tags
46
+ - name : Check formatting
47
+ run : |
48
+ black --check --target-version=py35 .
46
49
- name : PyLint
47
50
run : |
48
51
pylint $( find . -path './adafruit*.py' )
49
52
([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace $( find . -path "./examples/*.py" ))
50
- - name : Check formatting
51
- run : |
52
- black --check --target-version=py35 .
53
53
- name : Build assets
54
54
run : circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
55
55
- name : Build docs
You can’t perform that action at this time.
0 commit comments