We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d8d28 commit 92777deCopy full SHA for 92777de
.github/workflows/android_ci.yaml
@@ -3,6 +3,10 @@ on: [push]
3
4
jobs:
5
build:
6
+ strategy:
7
+ matrix:
8
+ version: ["3.20.x", "3.22.x", "3.24.x"]
9
+ fail-fast: false
10
name: Build APK
11
runs-on: ubuntu-latest
12
steps:
@@ -12,7 +16,7 @@ jobs:
16
java-version: "12.x"
13
17
- uses: subosito/flutter-action@v1
14
18
with:
15
- flutter-version: "3.19.x"
19
+ flutter-version: ${{ matrix.version }}
20
channel: "stable"
21
- run: flutter pub get
22
working-directory: ./example
.github/workflows/flutter_web_ci.yml
@@ -19,7 +19,7 @@ jobs:
- flutter-version: "3.22.x"
+ flutter-version: "3.24.x"
23
24
- name: Upgrades Flutter
25
run: flutter upgrade
0 commit comments