shithub: choc

Download patch

ref: c0cdfe3a498902eb7f0c5f00bf04e2013e03e4ad
parent: 67715d6e2725322e6132e9ff99b9a2a3f3b10c83
author: Turo Lamminen <turol@iki.fi>
date: Tue Jul 19 14:13:26 EDT 2022

Disable CI linter action fail fast

It is causing false positives

--- a/.github/workflows/cpp-linter.yml
+++ b/.github/workflows/cpp-linter.yml
@@ -43,4 +43,5 @@
 
       - 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"