Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 525 Bytes

CONTRIBUTING.md

File metadata and controls

45 lines (28 loc) · 525 Bytes

Contributing Guide

Development

Go Version

Developing in this repository requires Go 1.21 or higher.

Set-up

Clone the repo by running:

git clone [email protected]:coinbase/coinbase-sdk-go.git

Linting

To autocorrect all lint errors, run:

make lint-fix

To detect all lint errors, run:

make lint

Testing

To run all tests, run:

make test

Generating Documentation

To generate documentation from the TypeDoc comments, run:

make docs