From dfe09aa9bf6b0e37915d0d715624e26f881e81a6 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 19 Feb 2025 18:07:50 -0600 Subject: [PATCH] ci(tests) Verify runtime deps --- .github/workflows/tests.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) 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