feat: adds new provider (Cohere) (#3) #10
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-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and test | |
run: xcodebuild test -scheme AIModelRetriever -destination 'platform=iOS Simulator,name=iPhone 15 Pro' | |
test-macos: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and test | |
run: xcodebuild test -scheme AIModelRetriever -destination 'platform=macOS,arch=x86_64' |