Skip to content

chore: add/update Command Center review-loop skill #11

chore: add/update Command Center review-loop skill

chore: add/update Command Center review-loop skill #11

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Create venv and install dependencies
run: |
uv venv .venv --python ${{ matrix.python-version }}
uv pip install -e .
uv pip install pytest pytest-cov
- name: Run tests with coverage
run: uv run pytest tests/ -v --tb=short --cov=senspy --cov-report=xml --cov-report=term-missing
- name: Upload coverage reports to Codecov
if: matrix.python-version == '3.11'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false