Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit dabb254

Browse files
committed
Change action config
1 parent 573cabd commit dabb254

File tree

2 files changed

+3
-17
lines changed

2 files changed

+3
-17
lines changed

.github/workflows/builder_test.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,13 @@ jobs:
1515
env:
1616
working-directory: './builder'
1717
runs-on: ubuntu-latest
18-
strategy:
19-
fail-fast: false
20-
matrix:
21-
sdkver:
22-
- '3.x'
23-
- '3.19.x' # This is corresponded Flutter version which adopted Dart 3
24-
- any
2518
steps:
2619
- name: Checkout
27-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2821
- name: Setup Flutter
2922
uses: subosito/flutter-action@v2
3023
with:
3124
channel: stable
32-
flutter-version: ${{ matrix.sdkver }}
3325
- name: Get dependencies
3426
working-directory: ${{ env.working-directory }}
3527
run: flutter pub get

.github/workflows/model_test.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,13 @@ jobs:
1515
env:
1616
working-directory: './model'
1717
runs-on: ubuntu-latest
18-
strategy:
19-
fail-fast: false
20-
matrix:
21-
dartsdk:
22-
- '3.3'
23-
- stable
2418
steps:
2519
- name: Checkout
26-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2721
- name: Setup dart
2822
uses: dart-lang/setup-dart@v1
2923
with:
30-
sdk: ${{ matrix.dartsdk }}
24+
sdk: stable
3125
- name: Get dependencies
3226
working-directory: ${{ env.working-directory }}
3327
run: dart pub get

0 commit comments

Comments
 (0)