Skip to content

bumped version to 0.2.0 #2

bumped version to 0.2.0

bumped version to 0.2.0 #2

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies via pip
run: |
pip install coveralls
pip install -r requirements-dev.txt
pip install -r requirements.txt
- name: Run tests
run: pytest
- name: Create text report
run: coverage report