diff --git a/python-lint/action.yml b/python-lint/action.yml index 2918e78..8cd32fc 100644 --- a/python-lint/action.yml +++ b/python-lint/action.yml @@ -43,20 +43,20 @@ runs: - name: Run Black run: poetry run black --check . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run Flake8 run: poetry run flake8 . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run isort run: poetry run isort --check . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run mypy run: poetry run mypy . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash diff --git a/python-test/action.yml b/python-test/action.yml index 229e3d5..052a817 100644 --- a/python-test/action.yml +++ b/python-test/action.yml @@ -46,5 +46,5 @@ runs: - name: Run Test run: poetry run pytest - continue-on-error: true + continue-on-error: false shell: bash