fix: Object compression should be performed after conversion to dict #40
Workflow file for this run
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
| permissions: | |
| contents: read | |
| name: pytest | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| pytest: | |
| name: Run tests with pytest | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: ">=0.7.21,<0.8" | |
| - name: Set up Python ${{ matrix.python-version }} | |
| env: | |
| PYTHON_VERSION: ${{ matrix.python-version }} | |
| run: uv venv --python $PYTHON_VERSION | |
| - name: Install Dependencies | |
| run: uv sync --dev --locked | |
| - name: Run Tests | |
| run: uv run pytest |