Skip to content

Commit 7c17d0f

Browse files
committed
fix(ci): make ci.yml callable as reusable workflow (workflow_call)
deploy.yml invokes ci.yml as its 'test' gate via 'uses:', which requires a workflow_call trigger. Without it the entire Deploy workflow was invalid and failed before deploying.
1 parent 6bed437 commit 7c17d0f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [main, develop]
66
pull_request:
77
branches: [main, develop]
8+
# Allow this workflow to be called by deploy.yml as a reusable "test" gate.
9+
workflow_call:
810

911
jobs:
1012
python:

0 commit comments

Comments
 (0)