Skip to content

Update github URL

Update github URL #16

Workflow file for this run

name: tests
on: [push]
jobs:
run_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, pypy3]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Prepare project for development
run: |
python -m pip install poetry
python -m poetry config virtualenvs.create false
python -m poetry install
- name: Run tests
run: |
poetry run pytest --cov . --cov-report term