github.com/greenpau/go-authcrunch@v1.1.4/CONTRIBUTING.md (about) 1 # Contributing Guidelines 2 3 ## Contributor License Agreements 4 5 I'd love to accept your pull request! Before I can take them, we have to jump a 6 couple of legal hurdles. 7 8 Please see [`assets/cla/CLA.md`](assets/cla/CLA.md). 9 10 Please follow these steps to add CLA consent: 11 12 1. Add your info to `assets/cla/consent.yaml` 13 2. Agree to CLA via comment in PR. See [here](https://github.com/contributor-assistant/github-action#demo-for-step-2-and-3) 14 how to do it. 15 16 ## Pull Request Checklist 17 18 Before sending your pull requests, make sure you followed this list. 19 20 1. Open an issue to discuss your PR 21 2. Ensure you read appropriate Contributor License Agreement (CLA) 22 3. Run unit tests 23 24 ## Development Environment 25 26 The contribution to this project requires setting up a development 27 environment. The following steps allow developers to test their 28 code changes. 29 30 ```bash 31 git clone git@github.com:greenpau/go-authcrunch.git 32 cd go-authcrunch/ 33 make dep 34 make ctest 35 ```