This commit is contained in:
bd_ 2023-10-03 19:28:11 +09:00
parent cfd25ccd08
commit c33a3a6188

View File

@ -26,7 +26,7 @@ name: GameCI
on: on:
push: push:
branches: [master, dev, 000/plugin] branches: [master, dev, 000/plugin, failing-test]
# This is a bit of a radioactive event; we need to be very careful with what permissions # This is a bit of a radioactive event; we need to be very careful with what permissions
# we assign this action, as we're allowing arbitrary code execution with the context of # we assign this action, as we're allowing arbitrary code execution with the context of
# whatever permissions we assign. # whatever permissions we assign.
@ -67,14 +67,11 @@ jobs:
githubToken: ${{ github.token }} githubToken: ${{ github.token }}
coverageOptions: generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+nadena.dev.* coverageOptions: generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+nadena.dev.*
customParameters: -nographics -assemblyNames Tests customParameters: -nographics -assemblyNames Tests
- name: Test Report - name: List output files
uses: dorny/test-reporter@v1 run: |
if: failure() # run this step even if previous step failed echo path: ${{ steps.gameci.outputs.artifactsPath }}
with: ls -lR ${{ steps.gameci.outputs.artifactsPath }}
name: NUnit Tests # Name of the check run which will be created
path: ${{ steps.gameci.outputs.artifactsPath }}/*.xml # Path to test results
reporter: dotnet-trx # Format of test results
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
if: always() if: always()