Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
if: ${{ inputs.sdk == 'flutter' }}

- run: ${{ inputs.sdk }} pub get
- run: ${{ inputs.sdk }} pub get
if: ${{ inputs.package == 'flutter' }}
working-directory: flutter/microbenchmarks
- run: dart format --set-exit-if-changed ./

- name: dart analyze
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/min_version_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ jobs:
with:
flutter-version: "3.0.0"

- uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 # pin@v1.221.0
with:
ruby-version: '3.1.2' # https://github.com/flutter/flutter/issues/109385#issuecomment-1212614125

- name: Update Pods
run: sudo gem update
- name: Build iOS
run: |
cd min_version_test
Expand Down
1 change: 1 addition & 0 deletions dart/example_web/web/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Future<void> main() async {
Future<void> runApp() async {
print('runApp');

// ignore: deprecated_member_use
document.querySelector('#output')?.text = 'Your Dart app is running.';

await Sentry.addBreadcrumb(
Expand Down
1 change: 1 addition & 0 deletions flutter/lib/src/renderer/html_renderer.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// ignore: deprecated_member_use
import 'dart:js' as js;

import 'renderer.dart';
Expand Down
Loading
Loading