If you want to contribute to redhawk
, then please follow this guide
- Set up local development environment
- Change something...
- Run test
- Create PR
- You have to install...
- golang ( >= 1.14 )
- Set GOPATH
$ cd $GOPATH/src
$ mkdir -p github.com/DevopsArtFactory
$ cd github.com/DevopsArtFactory
$ git clone https://github.com/DevopsArtFactory/redhawk.git
$ cd redhawk
- Change codes
- If you create new function, then please make unit test.
- Please run
make format
in order to do formatting
make linters
: This will check the rules for clean code.make test
: Run unit test
- Thank you so much for your Pull Request!!