Skip to content

Commit

Permalink
Update CI workflow to use flake8, black, and isort formatting checks
Browse files Browse the repository at this point in the history
  • Loading branch information
waynehamadi committed Apr 17, 2023
1 parent 2f4ef3b commit 254cd69
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,15 @@ jobs:
- name: Lint with flake8
continue-on-error: false
run: flake8 autogpt/ tests/ --select E303,W293,W291,W292,E305,E231,E302
run: flake8

- name: Check black formatting
continue-on-error: false
run: black . --check

- name: Check isort formatting
continue-on-error: false
run: isort . --check

- name: Run unittest tests with coverage
run: |
Expand Down

0 comments on commit 254cd69

Please sign in to comment.