From 720dab7df132c80abb781ea9c82648566755de5c Mon Sep 17 00:00:00 2001 From: "Gregory M. Kapfhammer" Date: Sun, 8 Sep 2024 17:31:29 -0400 Subject: [PATCH] chore: Revise the .github/workflows/build.yml file with correct commands. --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26da739..5d59d17 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,13 +59,15 @@ jobs: pipx list cd exam poetry install - # Confirm correctness with execexam + # Confirm correctness with execexam and show + # detailed report information - name: Confirm Correctness with ExecExam if: always() run: | cd exam - poetry run execexam . tests/ --verbose - # Run GatorGrader: use the gatorgrade.yml in repository's root + poetry run execexam . ./tests/ --report trace --report status --report failure --report code --report setup --no-fancy + # 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 run: | pipx install gatorgrade