[update] opt-in new version API #453
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: Flutter Test | |
on: | |
- push | |
env: | |
flutter_version: '3.24.3' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.flutter_version }} | |
channel: stable | |
cache: true | |
- name: Setup Flutter | |
run: | | |
flutter config --no-cli-animations | |
- name: Flutter test | |
run: | | |
flutter test |