Bump flutter v3.16.0 #320
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI IOS | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
integration_test_ios: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
include: | |
- device: "iPhone 14 Pro Max" | |
- device: "iPhone 11 Pro Max" | |
- device: "iPhone 8 Plus" | |
- device: "iPad Pro (12.9-inch) (6th generation)" | |
- device: "iPad Pro (12.9-inch) (5th generation)" | |
fail-fast: true | |
steps: | |
- name: "Available Devices" | |
run: xcrun simctl list --json devices available | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.16.0" | |
channel: stable | |
- run: flutter doctor -v | |
- name: "Melos Install" | |
run: dart pub global activate melos | |
- name: "Melos bs" | |
run: melos bootstrap | |
- uses: futureware-tech/simulator-action@v2 | |
with: | |
model: ${{ matrix.device }} | |
os_version: "16.2" | |
- name: Integration Test | |
run: melos integration-test-app | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: ${{ matrix.device }} | |
path: ./screenshots/* |