Skip to content

Commit 1c0a928

Browse files
don't stop when linting breaks
1 parent 37ad321 commit 1c0a928

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,14 @@ jobs:
4343
pip install -r requirements.txt -r requirements_dev.txt
4444
4545
- name: Black
46+
continue-on-error: true
4647
if: steps.list_changed_python_files.outputs.files != null
4748
run: |
4849
. venv/bin/activate
4950
black --check ${{ steps.list_changed_python_files.outputs.files }}
5051
5152
- name: Flake8
53+
continue-on-error: true
5254
if: steps.list_changed_python_files.outputs.files != null
5355
run: |
5456
. venv/bin/activate

0 commit comments

Comments
 (0)