Skip to content

docs(architecture): refresh rebrand diagrams #152

docs(architecture): refresh rebrand diagrams

docs(architecture): refresh rebrand diagrams #152

Workflow file for this run

name: Lint (advisory)
on:
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Ruff
run: python -m pip install ruff
- name: Ruff check
continue-on-error: true
run: ruff check . --output-format=github
- name: Ruff format check
continue-on-error: true
run: ruff format --check .