Skip to content

adding documentation #77

adding documentation

adding documentation #77

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Install dependencies
run: |
pip install tox
pip install coveralls
- name: Run tests
run: |
tox -e py37 -v -- --cov=src
- name: Upload to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.coverage }}
run: |
coveralls