From 51dfd7c544fdfd3df00b2bf418a1509795aecd2e Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Thu, 27 Mar 2025 11:07:40 +0100 Subject: [PATCH] chore: rename code coverage ci for a more descriptive name Refs: OPS-91 --- .github/workflows/{ci.yml => codecov.yml} | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) rename .github/workflows/{ci.yml => codecov.yml} (71%) diff --git a/.github/workflows/ci.yml b/.github/workflows/codecov.yml similarity index 71% rename from .github/workflows/ci.yml rename to .github/workflows/codecov.yml index 47c219b..e69ed72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/codecov.yml @@ -1,15 +1,14 @@ -name: CI # Name of the workflow +name: Code Coverage on: push: branches: - master - devel - jobs: - test: # Defines a job called "test" - runs-on: ubuntu-latest # The job runs on the latest Ubuntu runner + test: # Defines a job called "test" + runs-on: ubuntu-latest # The job runs on the latest Ubuntu runner steps: - name: Checkout Repository @@ -18,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: "3.10" - name: Poetry run: pip install poetry @@ -28,7 +27,7 @@ jobs: - name: Run tests with coverage run: poetry run coverage run -m pytest - - name: Generate Coverage Report # Ensure creation of coverage.xml + - name: Generate Coverage Report # Ensure creation of coverage.xml run: poetry run coverage xml - name: Upload coverage to Codecov