Skip to content

[pre-commit.ci] auto fixes from pre-commit.com hooks #151

[pre-commit.ci] auto fixes from pre-commit.com hooks

[pre-commit.ci] auto fixes from pre-commit.com hooks #151

Workflow file for this run

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 }}