From 66f5d8879c790648c0089b0dbac3569be0040637 Mon Sep 17 00:00:00 2001 From: Matias de Andrea Date: Thu, 27 Feb 2025 17:39:52 +0100 Subject: [PATCH 1/2] build: update intl constraints --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2b157fe1..4ec46c64 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -19,7 +19,7 @@ dependencies: sdk: flutter flutter_localizations: sdk: flutter - intl: ^0.19.0 + intl: ">=0.19.0 <0.21.0" dev_dependencies: faker_dart: ^0.2.2 From ef428e0548bc963dcdfe89a3b0ef0fdfb240d698 Mon Sep 17 00:00:00 2001 From: Matias de Andrea Date: Thu, 27 Feb 2025 17:48:58 +0100 Subject: [PATCH 2/2] ci: update pipeline to build flutter beta version --- .github/workflows/base.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/base.yaml b/.github/workflows/base.yaml index 28db93b8..6289e096 100644 --- a/.github/workflows/base.yaml +++ b/.github/workflows/base.yaml @@ -19,6 +19,10 @@ jobs: build: name: Build package & run tests runs-on: ubuntu-latest + strategy: + matrix: + flutter-version: [stable, beta] + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -32,7 +36,7 @@ jobs: uses: kuhnroyal/flutter-fvm-config-action/setup@v3 with: path: '.fvmrc' - flavor: 'stable' + flavor: ${{ matrix.flutter-version }} - name: Install dependencies run: dart pub get - name: Run l10n