From 45064d0b18a02f4df6755226fd54b16d0923771f Mon Sep 17 00:00:00 2001 From: John Waller Date: Fri, 1 Mar 2024 12:29:25 +0100 Subject: [PATCH] print file created date --- .github/workflows/python_live_tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/python_live_tests.yml b/.github/workflows/python_live_tests.yml index af66971..05e6d5f 100644 --- a/.github/workflows/python_live_tests.yml +++ b/.github/workflows/python_live_tests.yml @@ -39,6 +39,7 @@ jobs: run: | for file in test/vcr_cassettes/*; do file_date=$(stat -c %y "$file" | cut -d ' ' -f 1) + echo "File $file was created on $file_date" current_date=$(date +%Y-%m-%d) if [[ "$file_date" != "$current_date" ]]; then echo "File $file was not created today"