Run tests in the CI

This commit is contained in:
Sleepy Monax 2023-11-13 19:19:59 +01:00
parent d0564a968f
commit 244e8664e8
2 changed files with 5 additions and 0 deletions

View file

@ -28,3 +28,7 @@ jobs:
- name: Run MyPy
run: |
python -m mypy --install-types --non-interactive .
- name: Run PyTest
run: |
python -m pytest

View file

@ -2,3 +2,4 @@ requests ~= 2.28.0
graphviz ~= 0.20.1
dataclasses-json ~= 0.6.2
mypy ~= 1.7.0
pytest ~= 7.4.3