From f3d56659ad623102ba8d43bcafa5f18c9f4efd99 Mon Sep 17 00:00:00 2001 From: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com> Date: Tue, 15 Aug 2023 11:16:16 +0300 Subject: [PATCH] make lint Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com> --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 79b221f..e272f55 100644 --- a/Makefile +++ b/Makefile @@ -3,5 +3,8 @@ all: build test build: go build -o bin/schemadiff ./cmd/schemadiff/main.go +lint: + golangci-lint run ./... + test: go test ./...