Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 578 Bytes

build.md

File metadata and controls

31 lines (23 loc) · 578 Bytes

Building ff-golang-server-sdk

This document shows the instructions on how to build and contribute to the SDK.

Requirements

Golang 1.6 or newer (go version)

Install Dependencies

go mod tidy

Build the SDK

Some make targets have been provided to build and package the SDK

go build ./...

Executing tests

 go test -race -v --cover ./...

Linting and Formating

To ensure the project is correctly formatted you can use the following commands

go fmt $(go list ./...)
go vet ./...