Skip to content

Commit 4013f0c

Browse files
noel-enquantaclaude
andcommitted
Switch CI from Travis to GitHub Actions
Remove .travis.yml and add .github/workflows/ci.yml. Update README badge accordingly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 080c1fc commit 4013f0c

File tree

3 files changed

+24
-15
lines changed

3 files changed

+24
-15
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: macos-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Run tests
16+
run: |
17+
xcodebuild test \
18+
-workspace Example/VoiceIt3-IosSDK.xcworkspace \
19+
-scheme VoiceIt3-IosSDK-Example \
20+
-destination 'platform=iOS Simulator,name=iPhone 15,OS=latest'
21+
env:
22+
VOICEIT_API_KEY: ${{ secrets.VOICEIT_API_KEY }}
23+
VOICEIT_API_TOKEN: ${{ secrets.VOICEIT_API_TOKEN }}

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="https://raw.githubusercontent.com/voiceittech/VoiceIt3-IosSDK/master/Graphics/ios.png" width="100%" style="width:100%">
22

3-
# VoiceIt3 iOS SDK [![Build Status](https://travis-ci.com/voiceittech/VoiceIt3-IosSDK.svg?branch=master)](https://travis-ci.com/voiceittech/VoiceIt3-IosSDK) [![version](https://img.shields.io/cocoapods/v/VoiceIt3-IosSDK.svg?style=flat)](http://cocoapods.org/pods/VoiceIt3-IosSDK) [![name](https://img.shields.io/cocoapods/p/VoiceIt3-IosSDK.svg?style=flat)](http://cocoapods.org/pods/VoiceIt3-IosSDK) ![MIT](https://img.shields.io/github/license/mashape/apistatus.svg)
3+
# VoiceIt3 iOS SDK [![CI](https://github.com/voiceittech/VoiceIt3-IosSDK/actions/workflows/ci.yml/badge.svg)](https://github.com/voiceittech/VoiceIt3-IosSDK/actions/workflows/ci.yml) [![version](https://img.shields.io/cocoapods/v/VoiceIt3-IosSDK.svg?style=flat)](http://cocoapods.org/pods/VoiceIt3-IosSDK) [![name](https://img.shields.io/cocoapods/p/VoiceIt3-IosSDK.svg?style=flat)](http://cocoapods.org/pods/VoiceIt3-IosSDK) ![MIT](https://img.shields.io/github/license/mashape/apistatus.svg)
44

55
A fully comprehensive SDK that gives you access to VoiceIt's API 3.0 featuring Voice + Face Verification and Identification with built in user interfaces and liveness detection.
66

0 commit comments

Comments
 (0)