Skip to content

Commit

Permalink
Include fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimas committed Nov 29, 2024
1 parent 3e55748 commit 1b2864a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
- name: Check code format with Black
run: |
black --check .
black --check src/ tests/ e2e-tests/
- name: Check code style with Flake8
if: ${{ always() }}
run: |
flake8 .
flake8 src/ tests/ e2e-tests/
- name: Check code style with isort
if: ${{ always() }}
run: |
isort . --check-only
isort --check-only src/ tests/ e2e-tests/
run-tests:
environment: CI/CD
Expand Down

0 comments on commit 1b2864a

Please sign in to comment.