diff options
Diffstat (limited to 'backend')
| -rw-r--r-- | backend/Makefile | 14 | ||||
| -rw-r--r-- | backend/justfile | 6 |
2 files changed, 6 insertions, 14 deletions
diff --git a/backend/Makefile b/backend/Makefile deleted file mode 100644 index e9bc5a6..0000000 --- a/backend/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -.PHONY: all -all: check lint - -.PHONY: check -check: - go build -o /dev/null ./... - -.PHONY: lint -lint: - go run github.com/golangci/golangci-lint/cmd/golangci-lint run - -.PHONY: gen -gen: - go generate ./... diff --git a/backend/justfile b/backend/justfile new file mode 100644 index 0000000..2927f38 --- /dev/null +++ b/backend/justfile @@ -0,0 +1,6 @@ +check: + go build -o /dev/null ./... + go run github.com/golangci/golangci-lint/cmd/golangci-lint run + +gen: + go generate ./... |
