Skip to content

testing-workflows

testing-workflows #4

name: iOS Integration Tests
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.1'
- name: Install dependencies
run: flutter pub get
working-directory: ./integrationtestapp
- name: Install CocoaPods
run: pod install --project-directory=./ios
working-directory: ./integrationtestapp
- name: Run iOS tests
run: flutter drive --target=integration_test/magic_link_test.dart -d ios
working-directory: ./integrationtestapp