mirror of
https://github.com/lovelaze/nebula-sync.git
synced 2025-11-05 18:29:19 +01:00
17 lines
273 B
Makefile
17 lines
273 B
Makefile
lint:
|
|
golangci-lint run
|
|
|
|
fmt:
|
|
golangci-lint fmt
|
|
|
|
mocks:
|
|
mockery --config .mockery.yaml
|
|
|
|
unit-test:
|
|
go test -count=1 -cover -v $(shell go list ./... | grep -v '/e2e$$')
|
|
|
|
e2e-test:
|
|
go test -count=1 -cover -v github.com/lovelaze/nebula-sync/e2e
|
|
|
|
test: unit-test e2e-test
|