Skip to content

Fixed bug in example code #32

Fixed bug in example code

Fixed bug in example code #32

Workflow file for this run

name: Develop
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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: Linting
run: |
pip install pre-commit
pre-commit run --all-files
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run mypy
run: |
pip install mypy
mypy . --ignore-missing-imports --exclude tests
- name: Run Tests
run: |
pip install pytest
pytest