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: