Skip to content

Commit 496a88b

Browse files
author
Hamas
committed
Final Polish: Update CI for Flutter Plugin
1 parent 2ce2ab4 commit 496a88b

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515

16-
- uses: dart-lang/setup-dart@v1
16+
- uses: actions/checkout@v4
17+
18+
- uses: subosito/flutter-action@v2
1719
with:
18-
sdk: stable
20+
channel: 'stable'
1921

2022
- name: Install dependencies
21-
run: dart pub get
23+
run: flutter pub get
2224

2325
- name: Verify formatting
2426
run: dart format --output=none . || true

.github/workflows/security_check.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12-
- uses: dart-lang/setup-dart@v1
12+
- uses: subosito/flutter-action@v2
13+
with:
14+
channel: 'stable'
1315

1416
- name: Install dependencies
15-
run: dart pub get
17+
run: flutter pub get
1618

1719
- name: Enforce Formatting
1820
run: dart format --output=none . || true

0 commit comments

Comments
 (0)