Skip to content

Commit

Permalink
Run checks on both stable and beta channels (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
guidezpl authored Mar 1, 2024
1 parent 4494c5f commit 1e08237
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@ permissions:

jobs:
check_package:
name: packages/${{ matrix.package }}
name: ${{ matrix.package }} using Flutter ${{ matrix.flutter-channel }}
runs-on: macos-latest
strategy:
matrix:
package: [google_fonts, dynamic_color] # Unmaintained / unreleased: adaptive_breakpoints, adaptive_navigation, adaptive_components, symbols]
flutter-channel: [stable, beta]
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Install Flutter
uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 # v2.12.0
with:
channel: beta
channel: ${{ matrix.flutter-channel }}
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'

Expand Down

0 comments on commit 1e08237

Please sign in to comment.