feat(eap): Add a column to store arrays in EAP #17190
Workflow file for this run
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: Snuba Docs on PR's | |
| on: | |
| pull_request: | |
| jobs: | |
| docs: | |
| name: Sphinx | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@884ad927a57e558e7a70b92f2bccf9198a4be546 # v6 | |
| with: | |
| version: '0.8.2' | |
| # we just cache the venv-dir directly in action-setup-venv | |
| enable-cache: false | |
| - uses: getsentry/action-setup-venv@3a832a9604b3e1a4202ae559248f26867b467cc7 # v2.1.1 | |
| with: | |
| python-version: 3.11.11 | |
| cache-dependency-path: docs-requirements.txt | |
| install-cmd: echo | |
| - name: Generate config schema docs | |
| run: | | |
| make generate-config-docs | |
| - name: Build docs | |
| run: | | |
| make snubadocs |