Skip to content

docs: update README with CI/release badges, pip install, and __versio… #3

docs: update README with CI/release badges, pip install, and __versio…

docs: update README with CI/release badges, pip install, and __versio… #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
packages: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install -e ".[dev]"
- name: Lint
run: python -m py_compile $(find pipeline observability infra -name "*.py" 2>/dev/null; true)
- name: Test
run: pytest tests/ -v --tb=short