m3_lightmeter/.github/workflows/run_integration_tests.yml

57 lines
1.7 KiB
YAML
Raw Normal View History

2024-03-04 21:15:41 +00:00
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Run integration tests
on:
workflow_dispatch:
2024-03-05 09:42:05 +00:00
workflow_call:
2024-03-04 21:15:41 +00:00
jobs:
2024-03-05 09:42:05 +00:00
run-integration-tests:
2024-03-04 21:15:41 +00:00
name: Run integration tests
2024-03-12 21:53:18 +00:00
timeout-minutes: 60
2024-03-12 21:21:57 +00:00
runs-on: macos-13
2024-03-04 21:15:41 +00:00
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Override iap package with stub
id: override-iap
run: bash ./.github/scripts/stub_iap.sh
2024-03-05 09:42:05 +00:00
- name: Restore secrets
run: |
bash .github/scripts/restore_from_base64.sh "${{ secrets.CONSTANTS }}" "lib/constants.dart"
bash .github/scripts/restore_from_base64.sh "${{ secrets.GOOGLE_SERVICES_JSON_IOS }}" "ios/Runner/GoogleService-Info.plist"
2024-03-13 10:52:08 +00:00
bash .github/scripts/restore_from_base64.sh "${{ secrets.FIREBASE_APP_ID_FILE }}" "ios/firebase_app_id_file.json"
2024-03-04 21:15:41 +00:00
- uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: "3.10.0"
2024-03-12 19:16:31 +00:00
- name: Prepare app
2024-03-04 21:15:41 +00:00
run: |
flutter --version
flutter pub get
flutter pub run intl_utils:generate
2024-03-05 09:42:05 +00:00
flutter analyze lib --fatal-infos
2024-03-04 21:15:41 +00:00
- name: Launch iOS simulator
uses: futureware-tech/simulator-action@v3
with:
2024-03-05 09:42:05 +00:00
model: "iPhone 15 Pro"
2024-03-12 21:07:18 +00:00
2024-03-04 21:15:41 +00:00
- name: Run tests
2024-03-12 21:07:18 +00:00
run: |
flutter drive \
2024-03-13 11:56:03 +00:00
--target=integration_test/run_all_tests.dart \
2024-03-12 21:07:18 +00:00
--driver=test_driver/integration_driver.dart \
--flavor=dev \
--no-dds \
--dart-define cameraStubImage=assets/camera_stub_image.jpg