Skip to content

Commit 02d4ed0

Browse files
committed
ci(tests) Verify runtime deps
1 parent 3f574c4 commit 02d4ed0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/tests.yml

+10
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ jobs:
2121
- name: Set up Python ${{ matrix.python-version }}
2222
run: uv python install ${{ matrix.python-version }}
2323

24+
- name: Test runtime dependencies
25+
run: |
26+
uv run --no-dev -p python${{ matrix.python-version }} -- python -c '
27+
from vcspull import _internal, cli, config, exc, log, types, util, validator, __version__
28+
from vcspull._internal import config_reader
29+
from vcspull.cli import sync
30+
print("vcspull version:", __version__)
31+
print("libvcs version:", __libvcs_version__)
32+
'
33+
2434
- name: Install dependencies
2535
run: uv sync --all-extras --dev
2636

0 commit comments

Comments
 (0)