Skip to content

Use proper version in openapi spec #32

Use proper version in openapi spec

Use proper version in openapi spec #32

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run tests
run: |
python -m unittest discover tests