Skip to content

Commit

Permalink
ci(tests) Verify runtime deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Feb 22, 2025
1 parent 3f574c4 commit 02d4ed0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ 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 vcspull import _internal, cli, config, exc, log, types, util, validator, __version__
from vcspull._internal import config_reader
from vcspull.cli import sync
print("vcspull version:", __version__)
print("libvcs version:", __libvcs_version__)
'
- name: Install dependencies
run: uv sync --all-extras --dev

Expand Down

0 comments on commit 02d4ed0

Please sign in to comment.