mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-04 22:17:59 +08:00

Setup top-level glide dependencies file. Migrated all of the manager service code into this repository. Fixed docker build procedure. Extracted executable to the top-level. Signed-off-by: Dejan Mijic <dejan@mainflux.com>
19 lines
298 B
Makefile
19 lines
298 B
Makefile
ci: fmt lint test
|
|
|
|
fmt:
|
|
! gofmt -l *.go | read nothing
|
|
go vet
|
|
|
|
lint:
|
|
go get github.com/golang/lint/golint
|
|
golint *.go
|
|
|
|
test: sysfs/fixtures/.unpacked
|
|
go test -v ./...
|
|
|
|
sysfs/fixtures/.unpacked: sysfs/fixtures.ttar
|
|
./ttar -C sysfs -x -f sysfs/fixtures.ttar
|
|
touch $@
|
|
|
|
.PHONY: fmt lint test ci
|