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