Fix typo and regenerate docs #trivial (#194) #150
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: 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 }} | |