Skip to content

Commit

Permalink
adding log everything
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 6fa48e8 commit 6365467
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,16 @@ jobs:
' $(find ./ -name "test-spec-coverage-*.json") > ./coverage/missing_paths.txt
cat ./coverage/missing_paths.txt
echo "Finished displaying missing paths"
- name: Output Full Operations List
run: |
echo "Outputting full operations list for debugging..."
jq -r -sc '
(map(.operations) | add) as $all_operations |
$all_operations |
map("\(.method) \(.path)") |
.[]
' $(find ./ -name "test-spec-coverage-*.json") > ./coverage/all_operations.txt
cat ./coverage/all_operations.txt
- name: Verify Uniqueness of Paths and Methods
run: |
Expand Down

0 comments on commit 6365467

Please sign in to comment.