Update version to 0.1.1, enhance README links for PyPI, and improve r… #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |