From 57a962148b63da5d3560cdedb72a13e9eef5bac1 Mon Sep 17 00:00:00 2001 From: amithkoujalgi Date: Mon, 10 Mar 2025 23:58:03 +0530 Subject: [PATCH] Update workflow name and job for clarity in testing Renamed the workflow to specify both unit and integration tests. Adjusted the job name to better reflect its purpose and ensured clear descriptions for inputs. These changes enhance readability and intent in the CI configuration. --- .github/workflows/run-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6432552..24a2b01 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,15 +1,15 @@ -name: Run Tests +name: Run Unit and Integration Tests on: workflow_dispatch: inputs: branch: - description: 'Branch name to run tests on' + description: 'Branch name to run the tests on' required: true default: 'main' jobs: - build: + run-tests: runs-on: ubuntu-latest steps: