Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ 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 unihan_etl import _internal, data_files, core, __about__, __main__, constants, expansion, options, pytest_plugin, test, types, util, __version__
from unihan_etl._internal import app_dirs
print("unihan_etl version:", __version__)
'

- name: Install dependencies
run: uv sync --all-extras --dev

Expand Down
Loading