iOS-3702 Date as an object | Add subscriptions for date and object relations #2864
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.0' | |
- 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 |