From 4bc05fb2a7b6f65eed0f6b233e5f6842510f44e1 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 19 Feb 2025 18:38:47 -0600 Subject: [PATCH] ci(tests) Verify runtime deps --- .github/workflows/tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 90a5506..a921dc2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,6 +25,14 @@ jobs: - name: Set up Python ${{ matrix.python-version }} run: uv python install ${{ matrix.python-version }} + - name: Test runtime dependencies + run: | + uv run --no-dev -p python${{ matrix.python-version }} -- python -c ' + from django_slugify_processor import __about__, text, templatetags, __version__ + from django_slugify_processor.templatetags import slugify_processor + print("django_slugify_processor version:", __version__) + ' + - name: Install dependencies run: uv sync --all-extras --dev