Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove continue-on-error so the default applies #2303

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/main_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ env:

jobs:
lock_check:
continue-on-error: False
runs-on: ${{ matrix.os }}

strategy:
Expand Down Expand Up @@ -46,7 +45,6 @@ jobs:
ptime pipenv lock

install_check:
continue-on-error: False
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -64,7 +62,6 @@ jobs:
autonomy --help

copyright_doc_and_dependencies_check:
continue-on-error: False
runs-on: ${{ matrix.os }}

strategy:
Expand Down Expand Up @@ -102,7 +99,6 @@ jobs:
run: tox -e check-dependencies

linter_checks:
continue-on-error: False
runs-on: ${{ matrix.os }}

strategy:
Expand Down Expand Up @@ -186,7 +182,6 @@ jobs:
gitleaks detect --report-format json --report-path leak_report -v

test:
continue-on-error: True
needs:
- lock_check
- install_check
Expand Down Expand Up @@ -381,7 +376,6 @@ jobs:
fail_ci_if_error: false

e2e:
continue-on-error: True
needs:
- lock_check
- install_check
Expand Down
Loading