From 4e574fbeefb400b2e99d7d5122fcd9e6e9e9f344 Mon Sep 17 00:00:00 2001 From: "Gregory M. Kapfhammer" Date: Thu, 26 Oct 2023 12:04:51 -0400 Subject: [PATCH] chore: Improve the names of tasks in the build.yml file. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b28ea4d0..62f607be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -90,13 +90,13 @@ jobs: poetry run task test # Run and collect the test coverage # Important: only run and collect test coverage monitoring on Linux - - name: Run and Collect Test Coverage + - name: Run and Collect Test Coverage - Linux Only if: always() && matrix.os == 'ubuntu-latest' run: | poetry run task test-coverage-silent > coverage.txt # Display the Coverage Report # Important: only report the monitored test coverage on Linux - - name: Display Collected Test Coverage + - name: Display Collected Test Coverage - Linux Only if: always() && matrix.os == 'ubuntu-latest' run: | export TOTAL=$(python -c "import json;print(json.load(open('coverage.json'))['totals']['percent_covered_display'])") @@ -110,7 +110,7 @@ jobs: # panel. This allows for test coverage to be calculated for each # operating system. However, coverage is only reported for Linux # through the badge and through the GitHub job summary. - - name: Run and Report Test Coverage + - name: Run and Report Test Coverage - MacOS and Windows Only if: always() && matrix.os != 'ubuntu-latest' run: | poetry run task test-coverage