Skip to content

Commit

Permalink
check files
Browse files Browse the repository at this point in the history
Signed-off-by: Tokesh <[email protected]>
  • Loading branch information
Tokesh committed Dec 29, 2024
1 parent 6f680c9 commit 3f81a59
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 3f81a59

Please sign in to comment.