Quickstart (#1015)

* fix quickstart md

* add quickstart to ci
This commit is contained in:
foreign-sub
2023-06-29 22:26:58 +02:00
committed by GitHub
parent 542b2d93a5
commit 574cbda979
2 changed files with 43 additions and 18 deletions

View File

@@ -49,6 +49,8 @@ jobs:
run: pip install -e '.[testing]' --extra-index-url https://download.pytorch.org/whl/cpu
- name: Test Docs
run: python docs/abstractions.py
- name: Test Quickstart
run: awk '/```python/{flag=1;next}/```/{flag=0}flag' docs/quickstart.md > quickstart.py && PYTHONPATH=. python3 quickstart.py
- name: Run Pytest
run: python -m pytest -s -v -n=auto test/