From 1f4e3f5f14f112eb2db51054bf0eb1f0edbbe1c8 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 19 Feb 2025 18:43:37 -0600 Subject: [PATCH] ci(tests) Verify runtime deps --- .github/workflows/tests.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8093843f..c32a1a31 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,6 +21,13 @@ jobs: - name: Set up Python ${{ matrix.python-version }} run: uv python install ${{ matrix.python-version }} + - name: Test runtime dependencies + run: | + uv run --no-dev -p python${{ matrix.python-version }} -- python -c ' + from cihai_cli import cli, __version__ + print("cihai_cli version:", __version__) + ' + - name: Install dependencies run: uv sync --all-extras --dev