From 98c894122bc7a9c6eee59350eb519090f26c3032 Mon Sep 17 00:00:00 2001 From: narunblog Date: Mon, 31 Jul 2023 22:13:31 +0900 Subject: [PATCH] fix melos pg melos test path --- .github/workflows/flutter_test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flutter_test.yaml b/.github/workflows/flutter_test.yaml index b28e2d21..93722679 100644 --- a/.github/workflows/flutter_test.yaml +++ b/.github/workflows/flutter_test.yaml @@ -43,10 +43,10 @@ jobs: run: melos bootstrap --sdk-path=${{ runner.tool_cache }}/flutter # 依存関係を解決 - name: Install Flutter dependencies by melos - run: melos pg + run: melos pg --sdk-path=${{ runner.tool_cache }}/flutter # テストを実行 - name: Run Flutter Test by melos - run: melos test --machine --coverage > test-report.log + run: melos test --sdk-path=${{ runner.tool_cache }}/flutter --machine --coverage > test-report.log # # flutter pub get を実行 # - name: Install Flutter dependencies