File tree Expand file tree Collapse file tree 6 files changed +2246
-2646
lines changed
Expand file tree Collapse file tree 6 files changed +2246
-2646
lines changed Original file line number Diff line number Diff line change 1919 needs : [release]
2020 runs-on : ubuntu-latest
2121 steps :
22- - uses : actions/checkout@v3
22+ - uses : actions/checkout@v4
2323 with :
2424 token : ${{ secrets.EXT_GITHUB }}
2525 repository : lnbits/lnbits-extensions
Original file line number Diff line number Diff line change @@ -5,42 +5,42 @@ format: prettier black ruff
55check : mypy pyright checkblack checkruff checkprettier
66
77prettier :
8- poetry run ./node_modules/.bin/prettier --write .
8+ uv run ./node_modules/.bin/prettier --write .
99pyright :
10- poetry run ./node_modules/.bin/pyright
10+ uv run ./node_modules/.bin/pyright
1111
1212mypy :
13- poetry run mypy .
13+ uv run mypy .
1414
1515black :
16- poetry run black .
16+ uv run black .
1717
1818ruff :
19- poetry run ruff check . --fix
19+ uv run ruff check . --fix
2020
2121checkruff :
22- poetry run ruff check .
22+ uv run ruff check .
2323
2424checkprettier :
25- poetry run ./node_modules/.bin/prettier --check .
25+ uv run ./node_modules/.bin/prettier --check .
2626
2727checkblack :
28- poetry run black --check .
28+ uv run black --check .
2929
3030checkeditorconfig :
3131 editorconfig-checker
3232
3333test :
3434 PYTHONUNBUFFERED=1 \
3535 DEBUG=true \
36- poetry run pytest
36+ uv run pytest
3737install-pre-commit-hook :
3838 @echo " Installing pre-commit hook to git"
39- @echo " Uninstall the hook with poetry run pre-commit uninstall"
40- poetry run pre-commit install
39+ @echo " Uninstall the hook with uv run pre-commit uninstall"
40+ uv run pre-commit install
4141
4242pre-commit :
43- poetry run pre-commit run --all-files
43+ uv run pre-commit run --all-files
4444
4545
4646checkbundle :
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def example_start():
4040__all__ = [
4141 "db" ,
4242 "example_ext" ,
43- "example_static_files" ,
4443 "example_start" ,
44+ "example_static_files" ,
4545 "example_stop" ,
4646]
You can’t perform that action at this time.
0 commit comments