Skip to content

Add configurable layout options #298

Add configurable layout options

Add configurable layout options #298

Workflow file for this run

name: checks
on:
push:
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
jobs:
required-checks:
runs-on: ubuntu-22.04
strategy:
matrix:
# Matches what is in setup.cfg
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install ".[formulas,dev]"
- name: Run static type checker and verify formatting guidelines
run: bash check.sh
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install dependencies for converting Mermaid diagrams
run: npm install -g @mermaid-js/mermaid-cli
- name: Run unit tests
env:
TEST_MERMAID: 1
run: python -m unittest discover -s tests