updates python-package testing workflow

This commit is contained in:
Mose Müller 2023-11-29 15:51:13 +01:00
parent b80a3ec6a1
commit de5340d6fd

View File

@ -29,10 +29,13 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
poetry install --with dev
- name: Test with pytest
run: |
poetry run pytest
- name: Test with pyright
run: |
poetry run pyright src/pydase
poetry run pyright
- name: Test with mypy
run: |
poetry run mypy src