Skip to content

Commit

Permalink
ci: add linting test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ki-Seki committed Aug 19, 2024
1 parent 2ff9120 commit fe775de
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with isort and black
run: |
isort . -v
black . -v
- name: Test with unittest
run: |
python -m unittest discover -s tests/ -p 'test*.py' -v
- name: Test linting with black
run: |
black . --check

0 comments on commit fe775de

Please sign in to comment.