Remove pylint action step

This commit is contained in:
Alec Delaney 2023-05-26 12:48:16 -04:00
parent 9af4579fdd
commit 7051c1e78c

View file

@ -40,15 +40,12 @@ jobs:
source actions-ci/install.sh source actions-ci/install.sh
- name: Pip install pylint, Sphinx, pre-commit - name: Pip install pylint, Sphinx, pre-commit
run: | run: |
pip install --force-reinstall pylint Sphinx sphinx-rtd-theme pre-commit pip install --force-reinstall Sphinx sphinx-rtd-theme pre-commit
- name: Library version - name: Library version
run: git describe --dirty --always --tags run: git describe --dirty --always --tags
- name: Pre-commit hooks - name: Pre-commit hooks
run: | run: |
pre-commit run --all-files pre-commit run --all-files
- name: PyLint
run: |
pylint $( find . -path './adafruit*.py' )
- name: Build docs - name: Build docs
working-directory: docs working-directory: docs
run: sphinx-build -E -W -b html . _build/html run: sphinx-build -E -W -b html . _build/html