Skip to content

Farewell, Leva

Farewell, Leva #124

Workflow file for this run

name: formatting
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install --all-extras
- name: Run Ruff
run: poetry run ruff docs/ viser/ examples/
- name: Run Black
run: poetry run black docs/ viser/ examples/ --check