We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90c7d9d commit dfe09aaCopy full SHA for dfe09aa
.github/workflows/tests.yml
@@ -22,6 +22,17 @@ jobs:
22
- name: Set up Python ${{ matrix.python-version }}
23
run: uv python install ${{ matrix.python-version }}
24
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
+
36
- name: Install dependencies
37
run: uv sync --all-extras --dev
38
0 commit comments