Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
.PHONY: build test clean setup-monorepo update-monorepo
.PHONY: build test test-example-1 clean setup-monorepo update-monorepo

build:
mkdir -p build
go build -o build/featurevisor-go cmd/main.go

test:
go test ./... -v
go test ./...

test-example-1:
go test ./...
go run cmd/main.go test --projectDirectoryPath=../featurevisor/examples/example-1 --onlyFailures

clean:
rm -rf build
Expand Down
Loading
Loading