From ac4014db097235339585f26032c1d2c89321048e Mon Sep 17 00:00:00 2001 From: Fumika Koyama Date: Thu, 9 Nov 2023 18:59:16 +0900 Subject: [PATCH] =?UTF-8?q?bash=E3=81=A7=E7=92=B0=E5=A2=83=E5=A4=89?= =?UTF-8?q?=E6=95=B0=E3=82=92=E8=A8=AD=E5=AE=9A=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/samples-dressca-backend.ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/samples-dressca-backend.ci.yml b/.github/workflows/samples-dressca-backend.ci.yml index 68130aa84..e311e3e52 100644 --- a/.github/workflows/samples-dressca-backend.ci.yml +++ b/.github/workflows/samples-dressca-backend.ci.yml @@ -75,9 +75,9 @@ jobs: - id: run-tests name: テストの実行 continue-on-error: true - env: - TEST_ENVIRONMENT: CI - run: dotnet test --no-build --logger trx --verbosity normal --configuration ${{ env.BUILD_CONFIGURATION }} --collect "XPlat Code Coverage" + run: | + set TEST_ENVIRONMENT=CI + dotnet test --no-build --logger trx --verbosity normal --configuration ${{ env.BUILD_CONFIGURATION }} --collect "XPlat Code Coverage" - id: create-test-result-report name: テスト結果ページの作成