Skip to content

IOS-8112: Test

IOS-8112: Test #10209

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- 'releases/**'
- 'release'
- 'develop'
- 'master'
types:
- opened
- reopened
- synchronize
- ready_for_review
merge_group:
types:
- checks_requested
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: macos-14
if: github.event.pull_request.draft == false
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.GH_MOBILE_PAT }}
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Tests
run: bundle exec fastlane test
check_bsdk_example_buildable:
name: Check BSDK example project

Check failure on line 45 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 45, Col: 5): Required property is missing: runs-on
if: github.event.pull_request.draft == false
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.GH_MOBILE_PAT }}
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Build BSDK example
run: bundle exec fastlane check_bsdk_example_buildable