Fix memory leaks #5291
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dart | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
projects: [app, api, tools] | |
defaults: | |
run: | |
working-directory: ${{ matrix.projects }} | |
steps: | |
- name: ⬆️ Checkout | |
uses: actions/checkout@v4 | |
- uses: subosito/[email protected] | |
with: | |
flutter-version-file: app/pubspec.yaml | |
- uses: actions/checkout@v4 | |
- name: Print Dart SDK version | |
run: | | |
dart --version | |
flutter --version | |
- name: Install dependencies | |
run: | | |
flutter pub get | |
# 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 . | |
# Consider passing '--fatal-infos' for slightly stricter analysis. | |
- name: Analyze project source | |
run: | | |
flutter analyze --fatal-infos | |
- name: Run build_runner | |
if: matrix.projects != 'tools' | |
run: dart run build_runner build --delete-conflicting-outputs | |
- name: Test for git changes | |
run: git diff --exit-code | |
# Your project will need to have tests in test/ and a dependency on | |
# package:test for this step to succeed. Note that Flutter projects will | |
# want to change this to 'flutter test'. | |
# - name: Run tests | |
# run: flutter test |