Skip to content

Merge pull request #583 from tacaswell/bld/fix_sdist #17

Merge pull request #583 from tacaswell/bld/fix_sdist

Merge pull request #583 from tacaswell/bld/fix_sdist #17

Workflow file for this run

name: Style - BLACK
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- 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