Skip to content

Update version to 0.1.1, enhance README links for PyPI, and improve r… #1

Update version to 0.1.1, enhance README links for PyPI, and improve r…

Update version to 0.1.1, enhance README links for PyPI, and improve r… #1

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Lint
run: ruff check .
- name: Type check
run: mypy zebraops
- name: Unit and contract tests
run: pytest tests/unit tests/contract
- name: Integration smoke
run: pytest tests/integration