Skip to content

Commit

Permalink
feat(server): Import or Export Project Functionality (#1141)
Browse files Browse the repository at this point in the history
  • Loading branch information
hexaforce authored Sep 18, 2024
1 parent 62c5a82 commit bce51c1
Show file tree
Hide file tree
Showing 39 changed files with 2,974 additions and 52 deletions.
8 changes: 7 additions & 1 deletion server/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
TEST_DIR ?= ./...

help:
@echo "Usage:"
@echo " make <target>"
@echo ""
@echo "Targets:"
@echo " lint Run golangci-lint with auto-fix"
@echo " test Run unit tests with race detector in short mode"
@echo " failcheck Run unit tests with fail-fast and no parallel execution"
@echo " e2e Run end-to-end tests"
@echo " build Build the project"
@echo " run-app Run the application"
Expand All @@ -17,6 +20,9 @@ lint:
test:
go test -race -short -v ./...

failcheck:
go test -race -short -failfast -p 1 $(TEST_DIR)

e2e:
go test -v ./e2e/...

Expand All @@ -32,4 +38,4 @@ run-db:
gql:
go generate ./internal/adapter/gql

.PHONY: lint test e2e build run-app run-db gql
.PHONY: lint test failcheck e2e build run-app run-db gql
Loading

0 comments on commit bce51c1

Please sign in to comment.