This repository was archived by the owner on Mar 15, 2026. It is now read-only.
Update README with detailed guide (#3) #28
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 testing | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.12"] | |
| env: | |
| PYTHON_VERSION: ${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: 🐍 Install uv and set Python version | |
| uses: astral-sh/setup-uv@v7.2.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| activate-environment: true | |
| - name: 📦 Install package and test dependencies | |
| run: uv pip install -e . --group tests | |
| - name: 🧪 Run tests | |
| run: python -m pytest tests/ -v |