From 5aa86ad20830d25430a543e4247c526c90f19ef4 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Mon, 17 Jul 2023 16:50:39 +1000 Subject: [PATCH] actions: Test check files 2 --- .gitea/workflows/push.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/push.yml b/.gitea/workflows/push.yml index a808c3c..4bb52ca 100644 --- a/.gitea/workflows/push.yml +++ b/.gitea/workflows/push.yml @@ -14,12 +14,14 @@ jobs: - name: List HTML files run: | ls *.html - - name: Check files + - name: Check files run: | for file in *.html; do if grep -q "" "$file"; then echo "File $file contains !" exit 1 + else + echo "File $file does not contain !" fi done