Skip to content

docs: refine start admin (#14) #28

docs: refine start admin (#14)

docs: refine start admin (#14) #28

Workflow file for this run

name: Python CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
python -m pip install --upgrade pip
python -m pip install uv
- name: Set up project (install dependencies without building)
run: |
uv sync --all-extras --group test
- name: Run pytest
run: |
# Create necessary directories for tests
mkdir -p data/logs
# Run tests with pytest configuration from pyproject.toml
uv run pytest