|
@@ -8,7 +8,13 @@ on:
|
|
|
|
|
|
|
|
jobs:
|
|
jobs:
|
|
|
test:
|
|
test:
|
|
|
- runs-on: macos-latest
|
|
|
|
|
|
|
+ runs-on: ${{ matrix.os }}
|
|
|
|
|
+
|
|
|
|
|
+ strategy:
|
|
|
|
|
+ matrix:
|
|
|
|
|
+ os: [macos-latest]
|
|
|
|
|
+ # sdk: [stable, beta, dev, 2.10.3, 2.12.0-29.10.beta]
|
|
|
|
|
+ sdk: [stable, master]
|
|
|
|
|
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/checkout@v2
|
|
@@ -19,7 +25,7 @@ jobs:
|
|
|
|
|
|
|
|
- uses: subosito/flutter-action@v1
|
|
- uses: subosito/flutter-action@v1
|
|
|
with:
|
|
with:
|
|
|
- flutter-version: "3.3.x"
|
|
|
|
|
|
|
+ channel: ${{ matrix.channel }}
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
- name: Install dependencies
|
|
|
run: flutter pub get
|
|
run: flutter pub get
|