IOS-3935 Space hub | Changed settings icon to profile icon #3170
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: ${{ vars.RUNNER_PR }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare deps | |
uses: ./.github/actions/prepare-deps | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1.6.0 | |
with: | |
xcode-version: '16.1' | |
- name: Download Middleware | |
run: make setup-middle-ci | |
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 |