docs: adds stream error handling #20
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 | |
jobs: | |
test-ios: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and test | |
run: xcodebuild test -scheme LLMChatAnthropic -destination 'platform=iOS Simulator,name=iPhone 16 Pro' | |
test-macos: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and test | |
run: xcodebuild test -scheme LLMChatAnthropic -destination 'platform=macOS,arch=x86_64' |