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 5a5727b commit 06e1051Copy full SHA for 06e1051
.github/workflows/ui-tests.yml
@@ -58,10 +58,11 @@ jobs:
58
run: pip install -r "sample/Tests/requirements.txt"
59
- name: Run UI tests
60
env:
61
- UNITY_APP_PATH: SampleApp.app
+ UNITY_APP_PATH: ${{ github.workspace }}/SampleApp.app
62
UNITY_APP_NAME: SampleApp
63
+ working-directory: sample/Tests
64
run: |
- chmod -R 755 SampleApp.app
65
- chmod +x sample/Tests/test_mac.sh
66
- ./sample/Tests/test_mac.sh
+ chmod -R 755 ${{ github.workspace }}/SampleApp.app
+ chmod +x test_mac.sh
67
+ ./test_mac.sh
68
sample/Tests/test.py
0 commit comments