From fdb76d1628f0f1e325e1f0a5ca940ee7333ab287 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Sun, 18 Feb 2024 16:07:44 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Try=20to=20fix=20cronet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cronet.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cronet.yml b/.github/workflows/cronet.yml index 0dfe64bb06..f5ff36c64e 100644 --- a/.github/workflows/cronet.yml +++ b/.github/workflows/cronet.yml @@ -44,20 +44,20 @@ jobs: flutter pub get && dart tool/prepare_for_embedded.dart - id: install name: Install dependencies - working-directory: pkgs/${{ matrix.package }} + working-directory: 'pkgs/${{ matrix.package }}' run: flutter pub get - name: Check formatting if: always() && steps.install.outcome == 'success' - working-directory: pkgs/${{ matrix.package }} + working-directory: 'pkgs/${{ matrix.package }}' run: dart format --output=none --set-exit-if-changed . - name: Analyze code if: always() && steps.install.outcome == 'success' - working-directory: pkgs/${{ matrix.package }} + working-directory: 'pkgs/${{ matrix.package }}' run: flutter analyze --fatal-infos - name: Run tests uses: reactivecircus/android-emulator-runner@6b0df4b0efb23bb0ec63d881db79aefbc976e4b2 if: always() && steps.install.outcome == 'success' - working-directory: pkgs/${{ matrix.package }}/example + working-directory: 'pkgs/${{ matrix.package }}/example' with: # api-level/minSdkVersion should be help in sync in: # - .github/workflows/cronet.yml