Skip to content

Commit c700030

Browse files
committed
tests(ci) Check runtime deps import correctly
1 parent efdc59c commit c700030

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/tests.yml

+9
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ jobs:
2323
- name: Set up Python ${{ matrix.python-version }}
2424
run: uv python install ${{ matrix.python-version }}
2525

26+
- name: Test runtime dependencies
27+
run: |
28+
uv run --no-dev -p python${{ matrix.python-version }} -- python -c '
29+
from libtmux import common, constants, exc, formats, neo, pane, server, session, window, __version__
30+
server = server.Server()
31+
print("libtmux version:", __version__)
32+
print("libtmux Server:", server)
33+
'
34+
2635
- name: Install dependencies
2736
run: uv sync --all-extras --dev
2837

0 commit comments

Comments
 (0)