From 3f81a594e1bc4491e62f2a1523230296eb92d18c Mon Sep 17 00:00:00 2001 From: Tokesh Date: Sun, 29 Dec 2024 20:00:32 +0500 Subject: [PATCH] check files Signed-off-by: Tokesh --- .github/workflows/test-spec.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-spec.yml b/.github/workflows/test-spec.yml index 43e5de93..096d4d1a 100644 --- a/.github/workflows/test-spec.yml +++ b/.github/workflows/test-spec.yml @@ -134,7 +134,10 @@ jobs: - name: Collect Test File Names run: | - find tests/. -name "*.yaml" | xargs realpath | jq -Rn '{ files: [inputs | "\(.)"] }' > test-files.json + files=$(find tests/. -name "*.yaml" | xargs realpath) + echo "Found the following test files:" + echo "$files" + echo "$files" | jq -Rn '{ files: [inputs | "\(.)"] }' > test-files.json - name: Display Unused Test Files run: |