From 2070753c5eb2b9c2954a6732ba276670d3100b76 Mon Sep 17 00:00:00 2001 From: amithkoujalgi Date: Sat, 30 Aug 2025 21:05:30 +0530 Subject: [PATCH] Update run-tests.yml --- .github/workflows/run-tests.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ca73d01..06704f8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,15 +1,25 @@ name: Run Unit and Integration Tests on: -# push: -# branches: -# - main + # push: + # branches: + # - main + + workflow_call: + inputs: + branch: + description: 'Branch name to run the tests on' + required: true + default: 'main' + type: string + workflow_dispatch: inputs: branch: description: 'Branch name to run the tests on' required: true default: 'main' + type: string jobs: run-tests: