8000 fix dotfiles which reference old path · matplotlib/mpl_data_containers@2733b85 · GitHub
[go: up one dir, main page]

Skip to content

Rename data-prototype to mp 7042 l-data-containers #163

Rename data-prototype to mpl-data-containers

Rename data-prototype to mpl-data-containers #163

Workflow file for this run

name: Check Code Style - BLACK
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install Dependencies
run: |
# These packages are installed in the base environment but may be older
# versions. Explicitly upgrade them because they often create
# installation problems if out of date.
python -m pip install --upgrade pip setuptools numpy
pip install black
- name: Run black
run: |
black . --check
0