Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
back to original formatting
  • Loading branch information
tschm committed Dec 7, 2024
commit e2a7b0fa645ab9e5fe2207348ed9a509338c4d2a
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest ecos
pip install pytest ecos black isort flake8
# isort black flake8
# pip install ecos
- name: Test with pytest
run: |
pytest ./tests
#- name: Check with isort
# run: |
# isort --check --diff .
#- name: Check with black
# run: |
# black --check --diff .
#- name: Check with flake8
# run: |
# flake8 --show-source --statistics .
- name: Check with isort
run: |
isort --check --diff .
- name: Check with black
run: |
black --check --diff .
- name: Check with flake8
run: |
flake8 --show-source --statistics .