Skip to content

Commit

Permalink
Add isort linting to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed Aug 23, 2021
1 parent 1a7ee0b commit 55b33a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
- name: Lint (black)
uses: psf/black@stable
with:
args: ". --check"
options: --check --diff
src: .
- name: Install dependencies
run: |
pip install -r requirements-test.txt
Expand All @@ -40,6 +41,9 @@ jobs:
- name: Lint (flake8)
run: |
flake8
- name: Lint (isort)
run: |
isort --check .
- name: Run tests
run: |
coverage run --source conbench -m pytest -v --durations=20 conbench/tests/
Expand Down

0 comments on commit 55b33a3

Please sign in to comment.