From 59db217fee2b8a098eb2bde2b72e03d3bd0ef947 Mon Sep 17 00:00:00 2001 From: "Gregory M. Kapfhammer" Date: Sun, 8 Sep 2024 18:05:25 -0400 Subject: [PATCH] chore: Remove the continue-on-error flag and add an if: always() condition to the build job in .github/workflows/build.yml. --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7dd3778..ca9941f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,16 +66,15 @@ jobs: run: | cd exam poetry run execexam . ./tests/ --report trace --report status --report failure --report code --report setup --no-fancy - continue-on-error: true # Run GatorGrader: use the gatorgrade.yml in repository's root; # note that this runs execexam for some of the checks - name: Run GatorGrader with GatorGrade + if: always() run: | pipx install gatorgrade pipx list cd exam gatorgrade --report env md GITHUB_STEP_SUMMARY - continue-on-error: true # Get the current time - name: Get the Current Time uses: josStorer/get-current-time@v2