X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka.git/blobdiff_plain/15891fa3df5ef5bc97c020fc72c34dc43348b253..67585f5d88f0b7406304f10d7f9827583175a3e7:/.github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f00cbfe..0da2cc6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,10 +13,10 @@ jobs: - name: Translate Repo Name For Build Tools filename_prefix id: repo-name run: echo ::set-output name=repo-name::Adafruit-Blinka - - name: Set up Python 3.6 + - name: Set up Python 3.7 uses: actions/setup-python@v1 with: - python-version: 3.6 + python-version: 3.7 - name: Versions run: | python3 --version @@ -35,12 +35,12 @@ jobs: source actions-ci/install.sh - name: Pip install pylint, black, & Sphinx run: | - pip install --force-reinstall pylint black Sphinx sphinx-rtd-theme + pip install --force-reinstall pylint==2.7.1 black Sphinx sphinx-rtd-theme - name: Library version run: git describe --dirty --always --tags - name: Check formatting run: | - black --check --target-version=py35 . + black --check --target-version=py37 . - name: PyLint run: | pylint $( find src -name '*.py' )