ci: run e2e tests against multiple Flutter versions (#2340)

This commit is contained in:
Felix Angelov
2024-07-11 12:13:28 -05:00
committed by GitHub
parent 9806202208
commit b02d10f8f0
2 changed files with 12 additions and 5 deletions
+8 -3
View File
@@ -12,10 +12,15 @@ on:
env:
SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }}
FLUTTER_VERSION: 3.22.0
FLUTTER_VERSION: 3.22.2
jobs:
patch:
strategy:
fail-fast: false
matrix:
flutter-version: [3.22.2, 3.19.6]
runs-on: ubuntu-latest
env:
@@ -49,7 +54,7 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: ${{ env.FLUTTER_VERSION }}
flutter-version: ${{ matrix.flutter-version }}
cache: true
- name: 🤖 AVD Cache
@@ -77,7 +82,7 @@ jobs:
with:
api-level: 29
arch: x86_64
script: ./scripts/patch_e2e.sh
script: ./scripts/patch_e2e.sh ${{ matrix.flutter-version }}
cli:
strategy: