Added missing params

pull/39/head
Alex Evgrashin 2020-02-15 19:17:15 +03:00
parent e8e933a75c
commit 42ab44ec5f
1 changed files with 16 additions and 10 deletions

View File

@ -43,14 +43,6 @@ jobs:
unityVersion: ${{ matrix.unityVersion }} unityVersion: ${{ matrix.unityVersion }}
testMode: editmode testMode: editmode
artifactsPath: artifacts/editmode artifactsPath: artifacts/editmode
# Upload artifacts
- name: Upload test results
if: always()
uses: actions/upload-artifact@v1
with:
name: Test results (edit mode)
path: artifacts/editmode
# Install dotnet # Install dotnet
- name: Installing dotnet - name: Installing dotnet
@ -58,5 +50,19 @@ jobs:
uses: actions/setup-dotnet@v1 uses: actions/setup-dotnet@v1
with: with:
dotnet-version: '2.1.202' dotnet-version: '2.1.202'
- run: dotnet ./UnityTestRunnerResultsReporter/UnityTestRunnerResultsReporter.dll
if: always() # Do the report magic
- run: dotnet ./UnityTestRunnerResultsReporter/UnityTestRunnerResultsReporter.dll \
--resultsPath=artifacts/editmode \
--resultXMLName=editmode-results.xml \
--unityLogName=editmode.log \
--reportdirpath=artifacts/editmode
if: always()
# Upload artifacts
- name: Upload test results
if: always()
uses: actions/upload-artifact@v1
with:
name: Test results (edit mode)
path: artifacts/editmode