File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 77! .editorconfig
88! .gitattributes
99! .gitignore
10+ ! .gitkeep
1011! .gitmodules
1112! .justfile
1213! .python-version
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ pre_commit:
3030# Build the project
3131build target :
3232 @ echo " Building..."
33- @ docker build -t packages / {{ target }} --build-arg PACKAGE= {{ target}} .
33+ @ uv run hatch build --target {{ target}}
3434
3535# Run a package
3636run * args = ' core':
4545# Run code quality tools
4646check :
4747 @ echo " Checking..."
48- @ # Check lock file consistency
4948 @ uv lock --locked
50- @ # Run pre-commit
5149 @ uv run pre-commit run -a
52- @ # Run mypy
5350 @ uv run mypy .
54- @ # Run deptry with ignored issues
5551 @ uv run deptry . --ignore=DEP002 ,DEP003
5652
5753# Remove build artifacts and non-essential files
You can’t perform that action at this time.
0 commit comments