Merge pull request #3 from sommersoft/build_yml_local_pip

Bring build.yml To New Standard Version
This commit is contained in:
Kattni 2020-03-05 17:21:38 -05:00 committed by GitHub
commit 2475642729
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,15 +25,22 @@ jobs:
- name: Versions
run: |
python3 --version
- uses: actions/checkout@v1
- name: Checkout Current Repo
uses: actions/checkout@v1
with:
submodules: true
- name: Install deps
- name: Checkout tools repo
uses: actions/checkout@v2
with:
repository: adafruit/actions-ci-circuitpython-libs
path: actions-ci
- name: Install dependencies
# (e.g. - apt-get: gettext, etc; pip: circuitpython-build-tools, requirements.txt; etc.)
run: |
sudo apt-get install -y gettext
pip install -r requirements.txt
pip install circuitpython-build-tools Sphinx sphinx-rtd-theme
pip install --force-reinstall pylint==1.9.2
source actions-ci/install.sh
- name: Pip install pylint, black, & Sphinx
run: |
pip install --force-reinstall pylint==1.9.2 black==19.10b0 Sphinx sphinx-rtd-theme
- name: Library version
run: git describe --dirty --always --tags
- name: PyLint