[pre-commit.ci] auto fixes from pre-commit.com hooks #151
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: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| dist: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: astral-sh/setup-uv@v7 | |
| - run: uvx --from build pyproject-build --sdist --wheel | |
| - run: uvx twine check dist/* | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| path: dist/* | |
| pytest-linux: | |
| name: Pytest | |
| strategy: | |
| matrix: | |
| os: | |
| - "ubuntu-latest" | |
| python-version: | |
| - "3.14" | |
| django-version: | |
| - "6.1a1" | |
| runs-on: ${{ matrix.os }} | |
| services: | |
| redis: | |
| image: redis | |
| ports: | |
| - 6379:6379 | |
| options: --entrypoint redis-server | |
| env: | |
| REDIS_URL: redis:///0 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - run: uv run --with django~=${{ matrix.django-version }} pytest -m "not benchmark" | |
| - uses: codecov/codecov-action@v7 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| pytest-extras: | |
| name: Pytest | |
| strategy: | |
| matrix: | |
| os: | |
| - "ubuntu-latest" | |
| django-version: | |
| - "6.1a1" | |
| extra: | |
| - "inspector" | |
| runs-on: ${{ matrix.os }} | |
| services: | |
| redis: | |
| image: redis | |
| ports: | |
| - 6379:6379 | |
| options: --entrypoint redis-server | |
| env: | |
| REDIS_URL: redis:///0 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - run: uv run --extra ${{ matrix.extra }} --with django~=${{ matrix.django-version }} pytest -m "not benchmark" | |
| - uses: codecov/codecov-action@v7 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |