Skip to content

docs: record ui phases and link the dashboard #11

docs: record ui phases and link the dashboard

docs: record ui phases and link the dashboard #11

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ["3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python }}
- run: uv sync --extra dev --extra ingest --extra ui
- run: uv run ruff check .
- run: uv run ruff format --check .
- run: uv run mypy
- run: uv run coverage run -m pytest
- run: uv run coverage report
secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}