Skip to content

Commit

Permalink
bashで環境変数を設定。
Browse files Browse the repository at this point in the history
  • Loading branch information
Fumika Koyama committed Nov 9, 2023
1 parent fd7d054 commit ac4014d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/samples-dressca-backend.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: テスト結果ページの作成
Expand Down

0 comments on commit ac4014d

Please sign in to comment.