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 e54fac1 commit deb438b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 10 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Tests
on: [push]
jobs:
tests:
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
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 -r requirements.txt
- name: runtests
run: python runtests.py
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit deb438b

Please sign in to comment.