From 7051c1e78cc040cccdcbe641fd6ee354e4ca360e Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Fri, 26 May 2023 12:48:16 -0400 Subject: [PATCH] Remove pylint action step --- .github/workflows/build.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0de3a1..14e3236 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,15 +40,12 @@ jobs: source actions-ci/install.sh - name: Pip install pylint, Sphinx, pre-commit 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 run: git describe --dirty --always --tags - name: Pre-commit hooks run: | pre-commit run --all-files - - name: PyLint - run: | - pylint $( find . -path './adafruit*.py' ) - name: Build docs working-directory: docs run: sphinx-build -E -W -b html . _build/html