Dispose email and password controllers in the login screen #6951
Workflow file for this run
This file contains hidden or 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: Main Branch CI | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 * * *" # Every day at midnight | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| flutter-tests: | |
| name: Test Flutter ${{ matrix.flutter_version }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| if: github.repository == 'flutter/samples' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| flutter_version: [stable, beta] | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| - uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 | |
| with: | |
| channel: ${{ matrix.flutter_version }} | |
| - run: flutter pub get && dart tool/ci_script.dart |