update documentation with fast_visualise and text #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run unit tests (for minimal build) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
# Version range or exact version of Python or PyPy to use, using SemVer's version range syntax. Reads from .python-version if unset. | |
python-version: "3.12" | |
# Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv, poetry. | |
cache: "pip" | |
- name: Update installation tools | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Install TurtleThread Minimal | |
run: pip install . | |
- name: Install pytest | |
run: pip install pytest | |
- name: Run tests with pytest | |
run: pytest tests/minimal/ | |