Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 264 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (18 loc) · 264 Bytes

The basics

  • Fork
  • Test
  • FMT
  • Pull Request

Using the Makefile

# Run all examples to see if they work.
make examples
# Format all go files, shortcut for go fmt ./...
make fmt
# Run all tests, shortcut for go test ./...
make test