There is no uvx

This commit is contained in:
Cheng
2025-07-30 15:20:40 +09:00
parent 8fb222f4a7
commit 893c55459e

View File

@@ -72,7 +72,9 @@ jobs:
- run: - run:
name: Run style checks name: Run style checks
command: | command: |
uvx pre-commit run --all uv venv
uv pip install pre-commit
uv run --no-project pre-commit run --all
if ! git diff --quiet; then echo 'Style checks failed, please install pre-commit and run pre-commit run --all and push the change'; exit 1; fi if ! git diff --quiet; then echo 'Style checks failed, please install pre-commit and run pre-commit run --all and push the change'; exit 1; fi
- run: - run:
name: Install dependencies name: Install dependencies
@@ -85,7 +87,6 @@ jobs:
- run: - run:
name: Install Python package name: Install Python package
command: | command: |
uv venv
uv pip install cmake uv pip install cmake
uv pip install -e ".[dev]" uv pip install -e ".[dev]"
- run: - run: