Fix pyupgrade job

- Remove continue_on_error everywhere
This commit is contained in:
Vladyslav Fedoriuk 2023-07-27 08:41:43 +02:00
parent 4e446f6c9d
commit d00cd3845c

View File

@ -23,19 +23,15 @@ jobs:
with:
src: web
version: 0.0.280
continue-on-error: true
- name: Lint with isort
run: |
cd web
python -m isort --check --diff .
continue-on-error: true
- name: Lint with black
run: |
cd web
python -m black --check --verbose .
continue-on-error: true
- name: Lint with pyupgrade
run: |
cd web
python -m pyupgrade --py311-plus .
continue-on-error: true
python -m pyupgrade --py311-plus