We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd9ffd1 + b81700f commit 70a9323Copy full SHA for 70a9323
1 file changed
.github/workflows/main.yaml
@@ -11,16 +11,15 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v4
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
17
- name: Set up Flutter
18
uses: subosito/flutter-action@v2
19
with:
- flutter-version: '3.16.0' # Specify a Flutter version that includes Dart 3.2.0 or higher
20
+ flutter-version: '3.29.2' # ✅ Dart 3.7.2
21
channel: "stable"
22
cache: true
- cache-key: 'flutter-:os:-:channel:-:version:-:hash:'
23
- cache-path: '${{ runner.tool_cache }}/flutter'
24
25
- name: Install dependencies
26
run: flutter pub get
@@ -33,9 +32,3 @@ jobs:
33
32
34
- name: Run tests
35
run: flutter test
36
-
37
- - name: Build APK
38
- run: flutter build apk --debug
39
40
- - name: Build appbundle
41
- run: flutter build appbundle --debug
0 commit comments