Skip to content

Commit 9cf5ece

Browse files
author
marcel corso gonzalez
authored
Merge pull request #78 from messagebird/ci
hello ci
2 parents 2905d95 + 89bb808 commit 9cf5ece

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

.github/worflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Python package
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
# You can use PyPy versions in python-version.
11+
# For example, pypy-2.7 and pypy-3.8
12+
matrix:
13+
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9"]
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v3
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
# You can test your matrix by printing the current Python version
22+
- name: Display Python version
23+
run: python -c "import sys; print(sys.version)"
24+
- name: install deps
25+
run: python setup.py install
26+
- name: test
27+
run: python -m unittest

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ MessageBird's REST API for Python
22
=================================
33
This repository contains the open source Python client for MessageBird's REST API. Documentation can be found at: https://developers.messagebird.com/.
44

5-
[![Build Status](https://travis-ci.org/messagebird/python-rest-api.svg?branch=master)](https://travis-ci.org/messagebird/python-rest-api)
6-
75
Requirements
86
------------
97
- [Sign up](https://www.messagebird.com/en/signup) for a free MessageBird account
@@ -85,4 +83,4 @@ Complete documentation, instructions, and examples are available at:
8583

8684
License
8785
-------
88-
The MessageBird REST Client for Python is licensed under [The BSD 2-Clause License](http://opensource.org/licenses/BSD-2-Clause). Copyright (c) 2014, MessageBird
86+
The MessageBird REST Client for Python is licensed under [The BSD 2-Clause License](http://opensource.org/licenses/BSD-2-Clause). Copyright (c) 2022, MessageBird

0 commit comments

Comments
 (0)