Skip to content

Commit

Permalink
add Flutter 3.13 to CI (#1680)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia authored Sep 11, 2023
1 parent 538a6ea commit 31e5851
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/patrol-prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.x'
flutter-version: '3.13.x'

- name: Set up Java
uses: actions/setup-java@v3
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.x'
flutter-version: '3.13.x'

- name: Generate Gradle wrapper
working-directory: packages/patrol/example
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.x'
flutter-version: '3.13.x'

- name: Generate iOS build files
working-directory: packages/patrol/example
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
strategy:
fail-fast: false
matrix:
flutter-version: ['3.3.x', '3.7.x', '3.10.x']
flutter-version: ['3.3.x', '3.7.x', '3.10.x', '3.13.x']

defaults:
run:
Expand All @@ -197,7 +197,7 @@ jobs:
run: flutter analyze

- name: dart format
if: ${{ (success() || failure()) && contains('3.10.x', matrix.flutter-version) }}
if: ${{ (success() || failure()) && (contains('3.10.x', matrix.flutter-version) || contains('3.13.x', matrix.flutter-version)) }}
run: dart format --set-exit-if-changed .

- name: flutter pub publish --dry-run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patrol_cli-prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
flutter-version: ['3.3.x', '3.7.x', '3.10.0']
flutter-version: ['3.3.x', '3.7.x', '3.10.x', '3.13.x']

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patrol_finders-prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
flutter-version: ['3.3.x', '3.7.x', '3.10.0']
flutter-version: ['3.3.x', '3.7.x', '3.10.x', '3.13.x']

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-android-device.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
flutter_version: ['3.10.x']
flutter_version: ['3.13.x']
device_model: ['oriole']
os: ['Android API']
os_version: ['33']
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-android-emulator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
flutter_version: ['3.10.x']
flutter_version: ['3.13.x']

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-ios-device.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
flutter_version: ['3.10.x']
flutter_version: ['3.13.x']
device_model: ['iphone14pro']
os_version: ['16.5']
os: [iOS]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-ios-simulator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
flutter_version: ['3.10.x']
flutter_version: ['3.13.x']
device_model: [iPhone 8, iPhone 14, iPad (9th generation)]
os: [iOS]
os_version: ['16.2']
Expand Down

0 comments on commit 31e5851

Please sign in to comment.