Skip to content

Bit of cleanup, add tests #119

Bit of cleanup, add tests

Bit of cleanup, add tests #119

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Test with pytest
run: |
export PATH=/home/runner/.local/bin:$PATH
pip install --user pipenv
pipenv install --dev
pipenv run pytest