Skip to content

Allowing opened push event to be transmitted when SDK is not initialized #528

Allowing opened push event to be transmitted when SDK is not initialized

Allowing opened push event to be transmitted when SDK is not initialized #528

Workflow file for this run

name: iOS SDK CI
on:
push:
branches:
- master
pull_request:
branches:
- '*'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
library:
name: Build and Run Unit Tests
runs-on: macos-13
strategy:
matrix:
xcode: ['15.1', '14.3.1']
config: ['debug', 'release']
steps:
- uses: actions/checkout@v3
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run ${{ matrix.config }} tests
run: make CONFIG=${{ matrix.config }} test-library
- uses: kishikawakatsumi/xcresulttool@v1
with:
path: TestResults.xcresult
if: success() || failure()