Updated docstrings to a consistent standard #41
Workflow file for this run
This file contains 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: Check Build | |
on: | |
push: | |
paths: | |
- '**.py' | |
- 'pyproject.toml' | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python: ["3.10", "3.12"] | |
os: ["macos-latest", "ubuntu-latest", "windows-latest"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dependencies | |
run: | | |
python -m pip install -e . | |
- name: Testing n = 4 example | |
run: | | |
cd examples/04/ | |
python3 test.py | |
cd ../../ | |
- name: Testing n = 50 example | |
run: | | |
cd examples/50/ | |
python3 test.py | |
cd ../../ | |
- name: Testing n = 1,000 example | |
run: | | |
cd examples/1000/ | |
python3 test.py | |
cd ../../ |