We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 01ed9c1 + 923b0a0 commit 0deedf9Copy full SHA for 0deedf9
1 file changed
.github/workflows/build.yml
@@ -14,18 +14,22 @@ jobs:
14
name: Run flutter test and analyze
15
runs-on: ubuntu-latest
16
strategy:
17
+ fail-fast: false
18
matrix:
- channel:
19
- - stable
+ include:
20
+ # Minimum supported version (keep in sync with pubspec.yaml).
21
+ - flutter-version: "3.32.0"
22
+ - channel: stable
23
# We'll add master after migrating to Melos 7.x.x and flutter workspaces
- # - master
24
+ # - channel: master
25
steps:
26
- name: Checkout repository
27
uses: actions/checkout@v4
28
29
- name: Setup Flutter environment
30
uses: subosito/flutter-action@v2.7.1
31
with:
32
+ flutter-version: ${{ matrix.flutter-version }}
33
channel: ${{ matrix.channel }}
34
35
- name: Set environment paths
0 commit comments