Add manual trigger option to GitHub Actions workflow

Enables workflow_dispatch trigger to allow manual runs of the CI pipeline
This commit is contained in:
544146
2024-11-08 18:12:38 +00:00
parent 2bbc32f54d
commit 7101be9cbf
+2 -1
View File
@@ -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