Skip to content

fix #33

fix #33 #172

Workflow file for this run

name: pytest
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install poetry
- run: poetry install
- run: python -m poetry run python -m pytest -v tests
- run: python -m poetry run pyright src