Skip to content

Commit 7f3241d

Browse files
committed
update pubspec and fix GH workflow
1 parent 6210741 commit 7f3241d

File tree

4 files changed

+25
-43
lines changed

4 files changed

+25
-43
lines changed

.github/workflows/dart.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/flutter.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Flutter
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
jobs:
9+
main:
10+
runs-on: macos-latest
11+
steps:
12+
- name: Clone repository
13+
uses: actions/checkout@v4
14+
- name: Set up Flutter
15+
uses: subosito/flutter-action@v2
16+
with:
17+
channel: stable
18+
flutter-version-file: pubspec.yaml
19+
- run: flutter pub get
20+
- run: dart format --output=none --set-exit-if-changed .
21+
- run: flutter analyze
22+
#- run: flutter test
23+
#- run: flutter build ios --release --no-codesign

pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,4 +1111,4 @@ packages:
11111111
version: "3.1.2"
11121112
sdks:
11131113
dart: ">=3.8.0 <4.0.0"
1114-
flutter: ">=3.29.0"
1114+
flutter: ">=3.32.0"

pubspec.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ version: 1.0.0+1
55

66
environment:
77
sdk: '>=3.4.1 <4.0.0'
8+
flutter: 3.32.0
89

910
dependencies:
1011
flutter:

0 commit comments

Comments
 (0)