diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09ccf5d..5802099 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,8 +32,6 @@ jobs: run: | sudo apt-get install -y gettext gawk pip install -r requirements.txt - pip install circuitpython-build-tools Sphinx sphinx-rtd-theme - pip install --force-reinstall pylint==1.9.2 - name: Library version run: git describe --dirty --always --tags - name: Package Folder Prefix For circuitpython-build-tools (Community Bundle Specific) @@ -44,12 +42,5 @@ jobs: gawk -F '\n' '{ match($1, /(drivers|helpers)\/(.+)\/(.+)/, arr) ; if (length(arr[0]) > 0 && match(arr[3], arr[2]) > 0) printf "%s, ", arr[2] }' | gawk '{ trimmed = substr($0, 1, length($0) - 2) ; print "\"" trimmed "\"" }' ) - - name: PyLint - run: | - pylint $( find . -path './adafruit*.py' ) - ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py) - name: Build assets run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location . --package_folder_prefix ${{ steps.pkg-folder.outputs.prefix }} - - name: Build docs - working-directory: docs - run: sphinx-build -E -W -b html . _build/html diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 566a0fb..be22d97 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,6 @@ jobs: run: | sudo apt-get install -y gettext gawk pip install -r requirements.txt - pip install circuitpython-build-tools - name: Package Folder Prefix For circuitpython-build-tools (Community Bundle Specific) id: pkg-folder run: |