File tree 1 file changed +16
-13
lines changed
1 file changed +16
-13
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
3
- env :
4
- # Note: The version below should be manually updated to the latest second most recent version
5
- # after a new stable version comes out.
6
- flutter_n_minus_one_version : " 3.24.5"
7
-
8
3
on :
9
4
pull_request :
10
5
paths-ignore :
14
9
- master
15
10
paths-ignore :
16
11
- ' **.md'
17
-
18
- concurrency :
19
- group : ${{ github.workflow }}-${{ github.ref }}
20
- cancel-in-progress : true
12
+ 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"
21
26
22
27
jobs :
23
28
# Does a sanity check that packages at least pass analysis on the N-1
29
34
strategy :
30
35
matrix :
31
36
flutter-version :
32
- # The version of Flutter to use should use the minimum Dart SDK version supported by the package,
33
- # refer to https://docs.flutter.dev/development/tools/sdk/releases.
34
- - ${{ env.flutter_n_minus_one_version }}
35
- - " 3.x"
37
+ - ${{ inputs.flutter_n_minus_one_version }}
38
+ - ${{ inputs.flutter_current_version }}
36
39
name : Checks formatting, lints, and tests this library against a specific Flutter version.
37
40
runs-on : ubuntu-latest
38
41
steps :
You can’t perform that action at this time.
0 commit comments