Skip to content

Commit a0bd83d

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 c68f00f commit a0bd83d

3 files changed

Lines changed: 30 additions & 24 deletions

File tree

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: '3.9'
18+
19+
- name: Install dependencies
20+
run: |
21+
pip install --upgrade pip
22+
pip install --upgrade setuptools
23+
pip install requests
24+
25+
- name: Run tests
26+
run: python3 tests.py
27+
env:
28+
VOICEIT_API_KEY: ${{ secrets.VOICEIT_API_KEY }}
29+
VOICEIT_API_TOKEN: ${{ secrets.VOICEIT_API_TOKEN }}

.travis.yml

Lines changed: 0 additions & 23 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="./python.png" width="100%" style="width:100%" />
22

3-
# VoiceIt3-Python [![travisstatus](https://app.travis-ci.com/voiceittech/VoiceIt3-Python.svg?branch=master)](https://app.travis-ci.com/github/voiceittech/VoiceIt3-Python) [![version](https://img.shields.io/pypi/dm/voiceit3)](https://pypi.org/project/voiceit3/) [![downloads](https://img.shields.io/pypi/dm/voiceit3)](https://pypi.org/project/voiceit3/) ![MIT](https://img.shields.io/github/license/mashape/apistatus.svg)
3+
# VoiceIt3-Python [![CI](https://github.com/voiceittech/VoiceIt3-Python/actions/workflows/ci.yml/badge.svg)](https://github.com/voiceittech/VoiceIt3-Python/actions/workflows/ci.yml) [![version](https://img.shields.io/pypi/dm/voiceit3)](https://pypi.org/project/voiceit3/) [![downloads](https://img.shields.io/pypi/dm/voiceit3)](https://pypi.org/project/voiceit3/) ![MIT](https://img.shields.io/github/license/mashape/apistatus.svg)
44

55
A Python wrapper for VoiceIt's API 3.0 featuring Voice + Face Verification and Identification.
66

0 commit comments

Comments
 (0)