Skip to content

Updated contact email #70

Updated contact email

Updated contact email #70

Workflow file for this run

name: build
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- 'main'
jobs:
tests:
env:
PYTHON: '3.9'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Unshallow
run: git fetch --prune --unshallow
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Generate coverage report
working-directory: ./
run: |
pip install -r requirements.txt
pip install coverage
coverage run -m pytest
coverage report -m