commit c0cdfe3a498902eb7f0c5f00bf04e2013e03e4ad
Author: Turo Lamminen <turol@iki.fi>
AuthorDate: Tue Jul 19 18:13:26 2022 +0300
Commit: Turo Lamminen <turol@iki.fi>
CommitDate: Tue Jul 19 18:13:26 2022 +0300
Disable CI linter action fail fast
It is causing false positives
---
.github/workflows/cpp-linter.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/cpp-linter.yml b/.github/workflows/cpp-linter.yml
index 76248003..9cccc630 100644
--- a/.github/workflows/cpp-linter.yml
+++ b/.github/workflows/cpp-linter.yml
@@ -43,4 +43,5 @@ jobs:
- name: Fail fast?!
if: steps.linter.outputs.checks-failed > 0
- run: exit 1
+ run: |
+ echo "Some files failed the linting checks! Fail fast disabled until false posivite issue is fixed"