From 6365467a5431e40b5159ba7779028a1a15f8c432 Mon Sep 17 00:00:00 2001 From: Tokesh Date: Sun, 29 Dec 2024 20:29:47 +0500 Subject: [PATCH] adding log everything Signed-off-by: Tokesh --- .github/workflows/test-spec.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test-spec.yml b/.github/workflows/test-spec.yml index 8509f661..4bf9bf18 100644 --- a/.github/workflows/test-spec.yml +++ b/.github/workflows/test-spec.yml @@ -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: |