From f2cd165ee0dd87a891edbd207341142255ab034d Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Fri, 25 Oct 2024 11:40:38 +0800 Subject: [PATCH] Update dart.yml --- .github/workflows/dart.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 6e1dc5f5..a72a8a97 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -27,14 +27,14 @@ jobs: cache: true # Caches dependencies between runs architecture: arm64 # Explicitly specify architecture - name: Install dependencies - run: flutter pub get + run: flutter pub get # even though this is a Dart package, it has as dev_dependency on objective_c for testing which for some reason has a Flutter dependency # Uncomment this step to verify the use of 'dart format' on each commit. # - name: Verify formatting # run: dart format --output=none --set-exit-if-changed . - - name: Analyze project source - run: dart analyze + #- name: Analyze project source + # run: dart analyze - name: Run tests run: dart --enable-experiment=native-assets test