File tree Expand file tree Collapse file tree 3 files changed +19
-8
lines changed Expand file tree Collapse file tree 3 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 1+ name : " Setup Flutter"
2+ description : " Sets up Flutter with the standard version for this repo"
3+ runs :
4+ using : " composite"
5+ steps :
6+ - name : Set up Flutter
7+ uses : subosito/flutter-action@v2
8+ with :
9+ channel : stable
10+ flutter-version : " 3.35.5"
11+ cache : true
12+ - name : Install dependencies
13+ run : flutter pub get
14+ shell : bash
Original file line number Diff line number Diff line change 1717 uses : actions/checkout@v5
1818
1919 - name : Set up Flutter
20- uses : subosito/flutter-action@v2
21- with :
22- channel : stable
23- flutter-version : 3.35.5
24- cache : true
25-
26- - name : Install
27- run : flutter pub get
20+ uses : ./.github/actions/setup-flutter
2821
2922 - name : Static Analysis
3023 run : flutter analyze
Original file line number Diff line number Diff line change @@ -113,6 +113,10 @@ jobs:
113113
114114 git add .
115115
116+ - name : Set up Flutter
117+ if : inputs.ios_version != ''
118+ uses : ./.github/actions/setup-flutter
119+
116120 - name : Update iOS SDK version
117121 if : inputs.ios_version != ''
118122 run : |
You can’t perform that action at this time.
0 commit comments