From d00cd3845c332071d077cf06d9aae2f933dcf50f Mon Sep 17 00:00:00 2001 From: Vladyslav Fedoriuk Date: Thu, 27 Jul 2023 08:41:43 +0200 Subject: [PATCH] Fix pyupgrade job - Remove continue_on_error everywhere --- .github/workflows/web.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/web.yaml b/.github/workflows/web.yaml index 981d8a3..9ec8625 100644 --- a/.github/workflows/web.yaml +++ b/.github/workflows/web.yaml @@ -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