You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/code-quality.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ jobs:
46
46
## VARs setup
47
47
outputs() { step_id="${{ github.action }}"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo "${var}=${!var}" >> $GITHUB_OUTPUT; done; }
48
48
# failure mode
49
-
unset FAIL_ON_FAULT ; case '${{ env.STYLE_FAIL_ON_FAULT }}' in
49
+
unset FAIL_ON_FAULT ; case "$STYLE_FAIL_ON_FAULT" in
50
50
''|0|f|false|n|no|off) FAULT_TYPE=warning ;;
51
51
*) FAIL_ON_FAULT=true ; FAULT_TYPE=error ;;
52
52
esac;
@@ -93,7 +93,7 @@ jobs:
93
93
## VARs setup
94
94
outputs() { step_id="${{ github.action }}"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo "${var}=${!var}" >> $GITHUB_OUTPUT; done; }
95
95
# failure mode
96
-
unset FAIL_ON_FAULT ; case '${{ env.STYLE_FAIL_ON_FAULT }}' in
96
+
unset FAIL_ON_FAULT ; case "$STYLE_FAIL_ON_FAULT" in
97
97
''|0|f|false|n|no|off) FAULT_TYPE=warning ;;
98
98
*) FAIL_ON_FAULT=true ; FAULT_TYPE=error ;;
99
99
esac;
@@ -133,7 +133,7 @@ jobs:
133
133
## VARs setup
134
134
outputs() { step_id="${{ github.action }}"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo "${var}=${!var}" >> $GITHUB_OUTPUT; done; }
135
135
# failure mode
136
-
unset FAIL_ON_FAULT ; case '${{ env.STYLE_FAIL_ON_FAULT }}' in
136
+
unset FAIL_ON_FAULT ; case "$STYLE_FAIL_ON_FAULT" in
0 commit comments