mirror of
https://github.com/nais/wonderwall.git
synced 2026-05-07 00:46:56 +00:00
12 lines
255 B
Makefile
12 lines
255 B
Makefile
wonderwall:
|
|
go build -o bin/wonderwall cmd/wonderwall/*.go
|
|
|
|
test:
|
|
go test -v -count=1 ./...
|
|
|
|
test_redis_integration:
|
|
go test -v -count=1 -tags=integration ./pkg/session/
|
|
|
|
alpine:
|
|
go build -a -installsuffix cgo -o bin/wonderwall cmd/wonderwall/main.go
|