Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

22 lines (17 loc) · 1.17 KB

Contributing to devstats

If You see any error, or if you have suggestion please create issue and/or PR.

Coding standards

  • Please follow coding standards required for Go language.
  • This is checked during the make step which calls the following static analysis/lint tools: fmt lint imports vet const usedexports.
  • When adding new functionality please add test coverage please that will be executed by make test.
  • If adding new database functionality and/or new metrics, please add new test covergage that will be executed by:
  • GHA2DB_PROJECT=kubernetes IDB_HOST='...' PG_PASS='...' IDB_PASS='...' ./dbtest.sh.
  • New metrics test coverage should be added in metrics_test.go.

Working locally

Please see Development.

Testing

Please see Tests.

Vulnerabilities

Please use GitHub issues to report any vulnerability found.

Adding new project

To add new project follow adding new project instructions.