Skip to content

Commit

Permalink
actions: initial
Browse files Browse the repository at this point in the history
Signed-off-by: Heiko Thiery <[email protected]>
  • Loading branch information
hthiery committed Jan 4, 2021
1 parent 569c29f commit e6c42cf
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "pypy3"]

steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2

- name: Install dependencies
run: pip install python-coveralls coverage nose
- name: Setup
run: python setup.py install
- name: Test
run: nosetests --with-coverage

0 comments on commit e6c42cf

Please sign in to comment.