Skip to content

Commit 0deedf9

Browse files
authored
Merge pull request #442 from AhmedLSayed9/ci_test_min_supported_sdk
Test against the minimum supported Flutter SDK in CI
2 parents 01ed9c1 + 923b0a0 commit 0deedf9

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,22 @@ jobs:
1414
name: Run flutter test and analyze
1515
runs-on: ubuntu-latest
1616
strategy:
17+
fail-fast: false
1718
matrix:
18-
channel:
19-
- stable
19+
include:
20+
# Minimum supported version (keep in sync with pubspec.yaml).
21+
- flutter-version: "3.32.0"
22+
- channel: stable
2023
# We'll add master after migrating to Melos 7.x.x and flutter workspaces
21-
# - master
24+
# - channel: master
2225
steps:
2326
- name: Checkout repository
2427
uses: actions/checkout@v4
2528

2629
- name: Setup Flutter environment
2730
uses: subosito/flutter-action@v2.7.1
2831
with:
32+
flutter-version: ${{ matrix.flutter-version }}
2933
channel: ${{ matrix.channel }}
3034

3135
- name: Set environment paths

0 commit comments

Comments
 (0)