Skip to content

Commit

Permalink
Add black check to the style checks (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed Jul 15, 2021
1 parent 0c90efc commit 61a37a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/check-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
- name: Install necessary Python packages
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install flake8 flake8-ets isort
python -m pip install black flake8 flake8-ets isort
- name: Check out the PR branch
uses: actions/checkout@v2
- name: Run style checks
run: |
python -m flake8
python -m isort . --check --diff
python -m isort docs/source/guide/examples --check --diff
python -m black . --check --diff

0 comments on commit 61a37a7

Please sign in to comment.