-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (26 loc) · 709 Bytes
/
Copy pathMakefile
File metadata and controls
32 lines (26 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
SHELL := /bin/bash
.SILENT:
help:
echo
echo "Mobius Golang Client Make Commands"
echo
echo " Commands "
echo
echo " help - show this message "
echo " example-auth - build/run the auth example"
echo " example-app - build/run the flappy app example"
echo " test - run the tests for this client"
echo " test-verbose - run the tests, and show coverage, and race conditions"
echo " deps - check status of dependencies"
test-verbose:
ginkgo -v -cover ./...
test:
ginkgo -r --cover --progress --succinct
deps:
dep ensure
example-auth:
source ./.env.example
cd examples/auth && go run main.go
example-app:
source ./.env.example
cd examples/flappy && go run main.go