From 7101be9cbfcbf3940a269b9e403b4fbd9a944a85 Mon Sep 17 00:00:00 2001 From: 544146 Date: Fri, 8 Nov 2024 18:12:38 +0000 Subject: [PATCH] Add manual trigger option to GitHub Actions workflow Enables workflow_dispatch trigger to allow manual runs of the CI pipeline --- .github/workflows/python-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index dd9a25cf..d07257c5 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -5,6 +5,7 @@ on: branches: - main pull_request: + workflow_dispatch: # This enables manual triggering jobs: test: @@ -28,4 +29,4 @@ jobs: pip install -r requirements.txt - name: Run pytest with -vv - run: pytest -vv + run: pytest -vv \ No newline at end of file