Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down