Skip to content

Commit 3e30b9c

Browse files
committed
Fix
1 parent a587d82 commit 3e30b9c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
!.editorconfig
88
!.gitattributes
99
!.gitignore
10+
!.gitkeep
1011
!.gitmodules
1112
!.justfile
1213
!.python-version

.justfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pre_commit:
3030
# Build the project
3131
build 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
3636
run *args='core':
@@ -45,13 +45,9 @@ test:
4545
# Run code quality tools
4646
check:
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

0 commit comments

Comments
 (0)