Skip to content

Commit

Permalink
Remove Travis / add Github action (#97)
Browse files Browse the repository at this point in the history
* testing

* removed travis
  • Loading branch information
bmuller committed Apr 12, 2021
1 parent 4f7959f commit 084aaf5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.8', '3.9', 'pypy-3.9']
python-version: ['3.6', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install . && pip install -r dev-requirements.txt
- run: pip install -r dev-requirements.txt
- run: pip install .
- run: pytest
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Python Distributed Hash Table
[![Build Status](https://secure.travis-ci.org/bmuller/kademlia.png?branch=master)](https://travis-ci.org/bmuller/kademlia)
[![Build Status](https://github.com/bmuller/kademlia/actions/workflows/ci.yml/badge.svg)](https://github.com/bmuller/kademlia/actions/workflows/ci.yml)
[![Docs Status](https://readthedocs.org/projects/kademlia/badge/?version=latest)](http://kademlia.readthedocs.org)
[![Coverage Status](https://coveralls.io/repos/github/bmuller/twistar/badge.svg?branch=master)](https://coveralls.io/github/bmuller/twistar?branch=master)

Expand Down
1 change: 1 addition & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ sphinx>=3.0.3
pytest>=5.4.1
pytest-asyncio>=0.11.0
pytest-cov>=2.8.1
wheel>=0.36.2

0 comments on commit 084aaf5

Please sign in to comment.