Skip to content

Correct nonconforming AW polyset #1831

Correct nonconforming AW polyset

Correct nonconforming AW polyset #1831

Workflow file for this run

name: 🕶️ Style
on:
push:
branches:
- "**"
pull_request:
branches:
- main
jobs:
style-checks:
name: Run style checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y python3-setuptools
- run: pip3 install -e .[style,docs]
- run: |
python3 -m ruff check .
python3 -m ruff format --check .
name: Run ruff checks
- run: python3 -m mypy .
name: Run mypy checks
- run: |
cd docs
make html SPHINXOPTS="-W"
name: Test docs build