Skip to content

Commit df057d6

Browse files
authored
Merge pull request #67 from sommersoft/build_yml_local_pip
Move Pip Installs Back To Library build.yml
2 parents 81888e0 + 3b9c403 commit df057d6

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

{{ cookiecutter.library_name }}/.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,13 @@ jobs:
3434
with:
3535
repository: adafruit/actions-ci-circuitpython-libs
3636
path: actions-ci
37-
- name: Install deps
37+
- name: Install dependencies
38+
# (e.g. - apt-get: gettext, etc; pip: circuitpython-build-tools, requirements.txt; etc.)
3839
run: |
3940
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
4044
- name: Library version
4145
run: git describe --dirty --always --tags
4246
- name: PyLint

{{ cookiecutter.library_name }}/README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ Introduction
2525
:target: https://github.com/{{ full_repo_name }}/actions
2626
:alt: Build Status
2727

28+
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
29+
:target: https://github.com/psf/black
30+
:alt: Code Style: Black
31+
2832
{% if cookiecutter.library_description != "" %}
2933
{{- cookiecutter.library_description }}
3034
{% else %}

0 commit comments

Comments
 (0)