From c33a3a618848e856db90bdca8de8da5e001e2e19 Mon Sep 17 00:00:00 2001 From: bd_ Date: Tue, 3 Oct 2023 19:28:11 +0900 Subject: [PATCH] ci_test --- .github/workflows/gameci.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/gameci.yml b/.github/workflows/gameci.yml index a9b721f1..071471cb 100644 --- a/.github/workflows/gameci.yml +++ b/.github/workflows/gameci.yml @@ -26,7 +26,7 @@ name: GameCI on: 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 # we assign this action, as we're allowing arbitrary code execution with the context of # whatever permissions we assign. @@ -67,14 +67,11 @@ jobs: githubToken: ${{ github.token }} coverageOptions: generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+nadena.dev.* customParameters: -nographics -assemblyNames Tests - - - name: Test Report - uses: dorny/test-reporter@v1 - if: failure() # run this step even if previous step failed - with: - 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 + + - name: List output files + run: | + echo path: ${{ steps.gameci.outputs.artifactsPath }} + ls -lR ${{ steps.gameci.outputs.artifactsPath }} - uses: actions/upload-artifact@v3 if: always()