feat: add event subscription interface to iOS SDK #96
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: Build and Test iOS | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v2 | |
- name: "Select Latest Xcode" | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: "Carthage Cached Bootstrap" | |
uses: DevCycleHQ/carthage-bootstrap@xcframeworks2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
use-xcframeworks: true | |
- name: Fastlane iOS Tests | |
run: fastlane ios tests |