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.
2 parents 2a4cd76 + ef428e0 commit 31c78afCopy full SHA for 31c78af
.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
pubspec.yaml
@@ -19,7 +19,7 @@ dependencies:
sdk: flutter
flutter_localizations:
- intl: ^0.19.0
+ intl: ">=0.19.0 <0.21.0"
dev_dependencies:
faker_dart: ^0.2.2
0 commit comments