Skip to content

Commit 13274c9

Browse files
committed
feat: expand Unity test workflow triggers
- Run tests on all branches instead of only main - Add pull request trigger to catch issues before merge - Maintain path filtering to run only when relevant files change
1 parent bec63f4 commit 13274c9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/unity-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ name: Unity Tests
33
on:
44
workflow_dispatch: {}
55
push:
6-
branches: [main]
6+
branches: ['**']
7+
paths:
8+
- TestProjects/UnityMCPTests/**
9+
- MCPForUnity/Editor/**
10+
- .github/workflows/unity-tests.yml
11+
pull_request:
712
paths:
813
- TestProjects/UnityMCPTests/**
914
- MCPForUnity/Editor/**

0 commit comments

Comments
 (0)