Add configurable layout options #298
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: 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 |