From c98a0ad321020bff2edbdf3ec17fa2e46fd68c24 Mon Sep 17 00:00:00 2001 From: Ben Diehl Date: Tue, 28 May 2024 11:48:55 +0000 Subject: [PATCH] update job names --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c90bd8b..526e2b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ permissions: "read-all" jobs: linting: - name: linting via pre-commit + name: Linting runs-on: ubuntu-latest steps: @@ -27,7 +27,7 @@ jobs: run: | pre-commit run --all-files test-coverage: - name: Test base configuration with coverage + name: Coverage py3.10 runs-on: ubuntu-latest steps: @@ -44,19 +44,19 @@ jobs: - name: Run tests run: | coverage run -m pytest - - name: Generate coverage report + - name: Generate xml run: | coverage xml - - name: Generate htmp report for inspection + - name: Generate html if: failure() run: | coverage html - - name: Upload coverage + - name: Upload report if: always() uses: actions/upload-artifact@v4 with: name: coverage-data - path: coverage/coverage.xml + path: coverage/* if-no-files-found: error test-packaging: name: Test packaging