084aaf5ace
* testing * removed travis
18 lines
382 B
YAML
18 lines
382 B
YAML
name: ci
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
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 -r dev-requirements.txt
|
|
- run: pip install .
|
|
- run: pytest
|