Skip to content

Commit dfe09aa

Browse files
committed
ci(tests) Verify runtime deps
1 parent 90c7d9d commit dfe09aa

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ jobs:
2222
- name: Set up Python ${{ matrix.python-version }}
2323
run: uv python install ${{ matrix.python-version }}
2424

25+
- name: Test runtime dependencies
26+
run: |
27+
uv run --no-dev -p python${{ matrix.python-version }} -- python -c '
28+
from gp_libs import __version__
29+
from docutils_compat import findall
30+
from doctest_docutils import is_allowed_version
31+
from linkify_issues import LinkifyIssues
32+
from pytest_doctest_docutils import pytest_addoptions
33+
print("gp_libs version:", __version__)
34+
'
35+
2536
- name: Install dependencies
2637
run: uv sync --all-extras --dev
2738

0 commit comments

Comments
 (0)