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 66f5d88 commit ef428e0Copy full SHA for ef428e0
.github/workflows/base.yaml
@@ -19,6 +19,10 @@ jobs:
19
build:
20
name: Build package & run tests
21
runs-on: ubuntu-latest
22
+ strategy:
23
+ matrix:
24
+ flutter-version: [stable, beta]
25
+
26
steps:
27
- name: Checkout repository
28
uses: actions/checkout@v4
@@ -32,7 +36,7 @@ jobs:
32
36
uses: kuhnroyal/flutter-fvm-config-action/setup@v3
33
37
with:
34
38
path: '.fvmrc'
35
- flavor: 'stable'
39
+ flavor: ${{ matrix.flutter-version }}
40
- name: Install dependencies
41
run: dart pub get
42
- name: Run l10n
0 commit comments