Skip to content

Commit

Permalink
Replace travis-ci with github actions for CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Dec 16, 2020
1 parent 8a09bfd commit 2b10cfc
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yaml
@@ -0,0 +1,21 @@
name: Tests
on: [push]
jobs:
tests:
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.6, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: pip deps
run: |
pip install cython
python setup.py build_ext -i
- name: runtests
run: python tests.py
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit 2b10cfc

Please sign in to comment.