Skip to content

feat: math/latex rendering in markdown #1239

feat: math/latex rendering in markdown

feat: math/latex rendering in markdown #1239

Workflow file for this run

name: Code quality
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
code-quality:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7, "3.9"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install ".[dev]" mypy==0.991 black==22.12.0 codespell==2.2.4
mypy --install-types --non-interactive solara
- name: Run codespell
run: codespell
- name: Run black
run: black solara
- name: Run flake8
uses: suo/flake8-github-action@releases/v1
- name: mypy
run: mypy solara