Skip to content

Commit

Permalink
Add CI runs with lowest supported Flutter version
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Jan 20, 2024
1 parent 9cee84a commit 4b38d54
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
strategy:
matrix:
flutter-channel: [stable, beta]
include:
- flutter-channel: stable
- flutter-channel: beta
- flutter-version: 3.16.0
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand All @@ -26,6 +30,7 @@ jobs:
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.flutter-channel }}
flutter-version: ${{ matrix.flutter-version }}

- run: flutter pub get

Expand All @@ -37,6 +42,10 @@ jobs:
strategy:
matrix:
flutter-channel: [stable, beta]
include:
- flutter-channel: stable
- flutter-channel: beta
- flutter-version: 3.16.0
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand All @@ -46,6 +55,7 @@ jobs:
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.flutter-channel }}
flutter-version: ${{ matrix.flutter-version }}

- run: flutter pub get
working-directory: example
Expand Down

0 comments on commit 4b38d54

Please sign in to comment.