Skip to content

Increment version number #139

Increment version number

Increment version number #139

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install .
- name: Run unit tests
run: |
pip install pytest
pytest ./tests