Skip to content

Commit 31c78af

Browse files
Merge pull request #149 from flutter-form-builder-ecosystem/feature/#137-update-intl-constraints
feat: #137 update intl constraints
2 parents 2a4cd76 + ef428e0 commit 31c78af

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/base.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
build:
2020
name: Build package & run tests
2121
runs-on: ubuntu-latest
22+
strategy:
23+
matrix:
24+
flutter-version: [stable, beta]
25+
2226
steps:
2327
- name: Checkout repository
2428
uses: actions/checkout@v4
@@ -32,7 +36,7 @@ jobs:
3236
uses: kuhnroyal/flutter-fvm-config-action/setup@v3
3337
with:
3438
path: '.fvmrc'
35-
flavor: 'stable'
39+
flavor: ${{ matrix.flutter-version }}
3640
- name: Install dependencies
3741
run: dart pub get
3842
- name: Run l10n

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies:
1919
sdk: flutter
2020
flutter_localizations:
2121
sdk: flutter
22-
intl: ^0.19.0
22+
intl: ">=0.19.0 <0.21.0"
2323

2424
dev_dependencies:
2525
faker_dart: ^0.2.2

0 commit comments

Comments
 (0)