Merge branch 'main' of https://github.com/christianlouis/document-processor
This commit is contained in:
@@ -18,9 +18,23 @@ jobs:
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
pip install pytest flake8 black mypy pylint
|
||||
|
||||
- name: Run Tests
|
||||
run: pytest tests/
|
||||
# - name: Run Tests
|
||||
# run: pytest tests/
|
||||
|
||||
- name: Run Linter (Flake8)
|
||||
run: flake8 app/
|
||||
continue-on-error: true
|
||||
|
||||
- name: Run Code Formatter (Black)
|
||||
run: black --check app/
|
||||
continue-on-error: true
|
||||
|
||||
- name: Run Type Checker (Mypy)
|
||||
run: mypy app/
|
||||
continue-on-error: true
|
||||
|
||||
- name: Run Linter (Pylint)
|
||||
run: pylint app/
|
||||
continue-on-error: true
|
||||
|
||||
Reference in New Issue
Block a user