Skip to content

Commit 7be9ed7

Browse files
committed
doc: add ci badge
1 parent a275172 commit 7be9ed7

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Python CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python: [3.7, 3.8]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Setup Python
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: ${{ matrix.python }}
19+
- name: Install Tox and any other packages
20+
run: pip install -r requirements/test.txt
21+
- name: Run Tox
22+
run: tox -e py

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Python SDK for ImageKit
22

3+
[![Python CI](https://github.com/imagekit-developer/imagekit-python/workflows/Python%20CI/badge.svg)](https://github.com/imagekit-developer/imagekitio-python/)
34
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
45
[![Twitter Follow](https://img.shields.io/twitter/follow/imagekitio?label=Follow&style=social)](https://twitter.com/ImagekitIo)
56

0 commit comments

Comments
 (0)