Skip to content

docs: reconcile documentation to current code state #26

docs: reconcile documentation to current code state

docs: reconcile documentation to current code state #26

Workflow file for this run

name: Test (Python Sidecar)
on:
push:
branches: [main, 'feat/**']
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: sidecar/requirements.txt
- run: cd sidecar && pip install -r requirements.txt && pip install -e .[test]
- run: cd sidecar && pytest