IOS-2927 Universal links | Add handle inside common url open method #1931
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: Run tests on PR | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
main: | |
name: Test Checks | |
runs-on: ios-self-hosted | |
timeout-minutes: 35 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare deps | |
uses: ./.github/actions/prepare-deps | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1.5.1 | |
with: | |
xcode-version: '15.4' | |
- name: Download Middleware | |
run: make setup-middle | |
env: | |
MIDDLEWARE_TOKEN: ${{ secrets.MIDDLEWARE_TOKEN }} | |
- name: License Checks | |
uses: ./.github/actions/license-checks | |
- name: Run unit tests | |
run: bundle exec fastlane tests skip_notify:true | |
env: | |
SLACK_URL_BUILD_TESTS: ${{ secrets.SLACK_URL_BUILD_TESTS }} | |
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 900 | |
FASTLANE_XCODE_LIST_TIMEOUT: 900 |