We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07c8dbd commit b3445fcCopy full SHA for b3445fc
.github/workflows/test.yaml
@@ -22,6 +22,14 @@ jobs:
22
restore-keys: |
23
Library-
24
25
+ # Move the package to a subdirectory
26
+ - name: Move package to subdirectory
27
+ run: |
28
+ mkdir -p unity-package
29
+ shopt -s extglob
30
+ mv !(unity-package) unity-package/
31
+ shopt -u extglob
32
+
33
# Test
34
- name: Run tests
35
uses: game-ci/unity-test-runner@v4
@@ -31,5 +39,6 @@ jobs:
39
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
40
with:
41
packageMode: true
42
+ projectPath: unity-package
43
githubToken: ${{ secrets.GITHUB_TOKEN }}
44
unityVersion: ${{ vars.UNITY_VERSION }}
0 commit comments