Skip to content

Fix up authorship information #13

Fix up authorship information

Fix up authorship information #13

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install pip and dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_test.txt
- name: Run tests with pytest
run: python -m pytest --cov-report term-missing --cov cabrillo -v