From 583480c18d25f28fe2db143ffcb9f8198e53bbac Mon Sep 17 00:00:00 2001 From: Christopher Byrd Date: Tue, 2 Apr 2024 11:33:26 -0700 Subject: [PATCH] nit --- .github/workflows/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 15564d9..1216d54 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -61,6 +61,13 @@ jobs: run: | coverage report + - name: Show contents of .coverage file + run: | + git fetch origin main:main + coverage_file_contents=$(git show main:.coverage) + echo "$coverage_file_contents" > .coverage_contents + cat .coverage_contents + - name: Retrieve baseline coverage run: | git fetch origin main:main