* MOD: workflow tests
Build and push / check and test (push) Successful in 6s
Build and push / build_and_push (push) Successful in 2m40s

Signed-off-by: Uwe Hermann <uh@uleenucks.de>
This commit is contained in:
2024-01-21 13:55:55 +01:00
parent ae4c6b8a85
commit 9504b924ae
4 changed files with 83 additions and 196 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ set -o pipefail
ERRORS=()
# find all executables and run `shellcheck`
for f in $(find . -type f -not -iwholename '*.git*' -not -name "Dockerfile" -not -name "plugin.sh" | sort -u); do
for f in $(find . -type f -not -iwholename '*.git*' -not -name "Dockerfile" | sort -u); do
if file "$f" | grep --quiet shell; then
{
shellcheck "$f" && echo "[OK]: sucessfully linted $f"