fix: crash when retrieving model information using Combine #120
Workflow file for this run
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: Code Quality | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_16.1.app/Contents/Developer | |
jobs: | |
test-ios: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and test | |
run: xcodebuild test -scheme OllamaKit -destination 'platform=iOS Simulator,name=iPhone 16 Pro' | |
test-macos: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and test | |
run: xcodebuild test -scheme OllamaKit -destination 'platform=macOS,arch=x86_64' |