Skip to content

Commit

Permalink
Use GH actions for huey CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Dec 16, 2020
1 parent beae339 commit c8566ef
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Tests
on: [push]
jobs:
tests:
name: ${{ matrix.python-version }}
runs-on: ubuntu-16.04
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: package deps
run: sudo apt-get install kyototycoon libkyototycoon-dev
- name: pip deps
run: pip install gevent redis peewee ukt
- name: runtests
env:
HUEY_TRAVIS: '1'
run: python runtests.py

0 comments on commit c8566ef

Please sign in to comment.