chore: Change woodpecker ci to use uv
This commit is contained in:
parent
9c80281220
commit
ddaa75f44b
2 changed files with 7 additions and 7 deletions
|
@ -3,7 +3,7 @@ steps:
|
||||||
image: nikolaik/python-nodejs
|
image: nikolaik/python-nodejs
|
||||||
commands:
|
commands:
|
||||||
- npm install --global pyright
|
- npm install --global pyright
|
||||||
- poetry install
|
- uv sync
|
||||||
- python --version && poetry --version && pyright --version
|
- python --version && uv version && pyright --version
|
||||||
- echo "------------- running pyright typecheck -------------"
|
- echo "------------- running pyright typecheck -------------"
|
||||||
- poetry run pyright
|
- uv run pyright
|
||||||
|
|
|
@ -3,9 +3,9 @@ when:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
pytest:
|
pytest:
|
||||||
image: ghcr.io/withlogicco/poetry:1.5.1
|
image: nikolaik/python-nodejs
|
||||||
commands:
|
commands:
|
||||||
- poetry install
|
- uv sync
|
||||||
- python --version && poetry --version
|
- python --version && uv version
|
||||||
- echo "------------- running pytest -------------"
|
- echo "------------- running pytest -------------"
|
||||||
- poetry run pytest
|
- uv run pytest
|
||||||
|
|
Loading…
Reference in a new issue