Skip to content

Commit 3b5ba96

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

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ 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
30+
server = libtmux.Server()
31+
print("Server version:", server.version)
32+
'
33+
2634
- name: Install dependencies
2735
run: uv sync --all-extras --dev
2836

0 commit comments

Comments
 (0)