1010 paths-ignore :
1111 - ' **.md'
1212 workflow_dispatch :
13- inputs :
14- flutter_n_minus_one_version :
15- description : The N-1 version of Flutter.
16- required : false
17- # The version of Flutter to use should use the minimum Dart SDK version supported by the package,
18- # refer to https://docs.flutter.dev/development/tools/sdk/releases.
19- # Note: The version below should be manually updated to the latest second most recent version
20- # after a new stable version comes out.
21- default : " 3.24.5"
22- flutter_current_version :
23- description : The current version of Flutter.
24- required : false
25- default : " 3.x"
2613
2714jobs :
2815 # Does a sanity check that packages at least pass analysis on the N-1
@@ -31,21 +18,25 @@ jobs:
3118 # (which we don't commit to supporting, but don't want to actively break)
3219 # without updating the constraints.
3320 lint_and_build :
34- name : Flutter version ${{ matrix.flutter-version }} Lint and Build.
21+ name : Flutter Version ${{ matrix.flutter-version }} Lint and Build.
3522 runs-on : ubuntu-latest
3623 strategy :
3724 matrix :
3825 flutter-version :
39- - ${{ inputs.flutter_n_minus_one_version }}
40- - ${{ inputs.flutter_current_version }}
26+ # The version of Flutter to use should use the minimum Dart SDK version supported by the package,
27+ # refer to https://docs.flutter.dev/development/tools/sdk/releases.
28+ # Note: The version below should be manually updated to the latest second most recent version
29+ # after a new stable version comes out.
30+ - " 3.24.5"
31+ - " 3.x"
4132 steps :
4233 - name : 📚 Git Checkout
4334 uses : actions/checkout@v4
4435
4536 - name : 🐦 Setup Flutter
4637 uses : subosito/flutter-action@v2
4738 with :
48- flutter-version : ${{matrix.flutter-version}}
39+ flutter-version : ${{ matrix.flutter-version }}
4940 channel : stable
5041 cache : true
5142 cache-key : flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }}
0 commit comments