Skip to content

Fix typo and regenerate docs #trivial (#194) #150

Fix typo and regenerate docs #trivial (#194)

Fix typo and regenerate docs #trivial (#194) #150

Workflow file for this run

name: Tests
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: macos-latest
strategy:
matrix:
destination: ['platform=iOS Simulator,OS=16.0,name=iPhone 14 Pro']
swift-version: ['5.7']
steps:
- name: Install Swift
uses: YOCKOW/Action-setup-swift@main
with:
swift-version: ${{ matrix.swift-version }}
- uses: actions/checkout@master
- name: Compile and Test
run: |
carthage bootstrap --platform iOS --cache-builds --use-xcframeworks && xcodebuild clean test -project RxFlow.xcodeproj -scheme RxFlow -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
env:
destination: ${{ matrix.destination }}