|
@@ -14,7 +14,8 @@ jobs:
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/checkout@v2
|
|
|
- name: Create Test Result Directory
|
|
- name: Create Test Result Directory
|
|
|
- run: mkdir -p $TEST_REPORTS
|
|
|
|
|
|
|
+ run: |
|
|
|
|
|
+ mkdir -p tmp/test-results/
|
|
|
- name: Run Unit Test - macOS
|
|
- name: Run Unit Test - macOS
|
|
|
run: |
|
|
run: |
|
|
|
cd XCode
|
|
cd XCode
|
|
@@ -35,4 +36,4 @@ jobs:
|
|
|
uses: actions/upload-artifact@v1
|
|
uses: actions/upload-artifact@v1
|
|
|
with:
|
|
with:
|
|
|
name: test-results
|
|
name: test-results
|
|
|
- path: o/tmp/test-results
|
|
|
|
|
|
|
+ path: tmp/test-results
|