diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4ad8721..95df32c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,6 +22,17 @@ 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 gp_libs import __version__ + from docutils_compat import findall + from doctest_docutils import is_allowed_version + from linkify_issues import LinkifyIssues + from pytest_doctest_docutils import pytest_addoptions + print("gp_libs version:", __version__) + ' + - name: Install dependencies run: uv sync --all-extras --dev