File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,22 @@ jobs:
25
25
- name : Versions
26
26
run : |
27
27
python3 --version
28
- - uses : actions/checkout@v1
28
+ - name : Checkout Current Repo
29
+ uses : actions/checkout@v1
29
30
with :
30
31
submodules : true
31
- - name : Install deps
32
+ - name : Checkout tools repo
33
+ uses : actions/checkout@v2
34
+ with :
35
+ repository : adafruit/actions-ci-circuitpython-libs
36
+ path : actions-ci
37
+ - 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
32
42
run : |
33
- sudo apt-get install -y gettext
34
- pip install -r requirements.txt
35
- pip install circuitpython-build-tools Sphinx sphinx-rtd-theme
36
- pip install --force-reinstall pylint==1.9.2
43
+ pip install --force-reinstall pylint==1.9.2 black==19.10b0 Sphinx sphinx-rtd-theme
37
44
- name : Library version
38
45
run : git describe --dirty --always --tags
39
46
- name : PyLint
You can’t perform that action at this time.
0 commit comments