Skip to content

Enhance README.md: Add model loading section and clarify training ins… #14

Enhance README.md: Add model loading section and clarify training ins…

Enhance README.md: Add model loading section and clarify training ins… #14

name: UV Environment Installation Check
on:
push:
pull_request:
jobs:
check-uv-install:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Verify uv installation
run: uv --version
- name: Create and sync uv environment
run: |
uv sync
- name: Verify environment
run: |
uv run python --version