Skip to content

Document Studio in README and tutorials #91

Document Studio in README and tutorials

Document Studio in README and tutorials #91

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Compile Python sources
run: python -m py_compile main.py src/*.py tests/*.py
- name: Run unit tests
run: python -m unittest discover -s tests -p "test_*.py" -v