Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 612 Bytes

CONTRIBUTING.md

File metadata and controls

41 lines (27 loc) · 612 Bytes

Setting up the environment

First, make sure you have Go installed (version 1.18 or higher). You can download it from go.dev.

Dependencies Management

We use Go modules for dependency management.

Install dependencies:

go mod tidy

Running Tests

Run all tests:

go test ./...

Run tests with coverage:

go test -coverprofile=coverage.out ./...
go tool cover -html=coverage.out  # View coverage report in browser

Check code format:

gofumpt -l -w . 

Building the project

To build the project:

go build ./...