CI: Ignore errors from general lints we don't yet have passing

Once we have made the necessary backports or changes to get these lints
to pass, we can remove the corresponding ignores to prevent regression.
This commit is contained in:
Jack Grigg 2021-08-24 16:02:34 +01:00
parent 4e93c62368
commit ba7aaf1e7c
1 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,7 @@ jobs:
- name: Locale dependence
run: ./test/lint/lint-locale-dependence.sh
if: always()
continue-on-error: true # Temporary until we get this passing
- name: Python UTF-8 encoding
run: ./test/lint/lint-python-utf8-encoding.sh
@ -40,14 +41,17 @@ jobs:
- name: Shebang
run: ./test/lint/lint-shebang.sh
if: always()
continue-on-error: true # Temporary until we get this passing
- name: Shell locale
run: ./test/lint/lint-shell-locale.sh
if: always()
continue-on-error: true # Temporary until we get this passing
- name: Shellcheck
run: ./test/lint/lint-shell.sh
if: always()
continue-on-error: true # Temporary until we get this passing
- name: Whitespace
run: ./test/lint/lint-whitespace.sh