We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 904e001 commit 9edc0e2Copy full SHA for 9edc0e2
.github/workflows/build.yml
@@ -34,9 +34,13 @@ jobs:
34
with:
35
repository: adafruit/actions-ci-circuitpython-libs
36
path: actions-ci
37
- - name: Install deps
+ - name: Install dependencies
38
+ # (e.g. - apt-get: gettext, etc; pip: circuitpython-build-tools, requirements.txt; etc.)
39
run: |
40
source actions-ci/install.sh
41
+ - name: Pip install pylint, black, & Sphinx
42
+ run: |
43
+ pip install --force-reinstall pylint==1.9.2 black==19.10b0 Sphinx sphinx-rtd-theme
44
- name: Library version
45
run: git describe --dirty --always --tags
46
- name: PyLint
0 commit comments