Skip to content

Mob 1843 fastlane deliver app store release notes #164

Mob 1843 fastlane deliver app store release notes

Mob 1843 fastlane deliver app store release notes #164

Workflow file for this run

name: Merge Unit Tests
on:
pull_request:
paths:
- 'Client/**'
- 'Shared/**'
- 'Storage/**'
branches: [ main ]
jobs:
execute_merge_tests:
runs-on: macos-latest
name: Execute Merge Tests
env:
DEVELOPER_DIR: /Applications/Xcode_14.2.0.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Prepare environment
uses: ./.github/actions/prepare_environment
with:
core-token: ${{ secrets.IOS_CORE_TOKEN }}
- name: Evaluate Tests to execute
id: evaluate-tests-to-execute
uses: ./.github/actions/evaluate_tests_to_execute
- name: Perform Tests and Publish Test reports
id: perform-tests
uses: ./.github/actions/perform_tests
with:
needs-shared-tests: ${{ steps.evaluate-tests-to-execute.outputs.shared-module-changed }}
needs-storage-tests: ${{ steps.evaluate-tests-to-execute.outputs.storage-module-changed }}
needs-client-tests: ${{ steps.evaluate-tests-to-execute.outputs.client-module-changed }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Update derived data cache
uses: ./.github/actions/save_derived_data