You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+15-3
Original file line number
Diff line number
Diff line change
@@ -58,13 +58,25 @@ Optional flags:
58
58
59
59
## Development
60
60
61
-
When adding new functionality, please also add corresponding tests.
61
+
Pull requests are welcome. If you're adding a new feature, please [submit an issue](https://github.com/honeybadger-io/cli/issues/new) as a preliminary step; that way you can be (moderately) sure that your pull request will be accepted.
62
+
63
+
When adding or changing functionality, please also add or update corresponding tests.
62
64
63
65
To run tests locally:
66
+
64
67
```bash
65
68
go test ./...
66
69
```
67
70
71
+
### To contribute your code:
72
+
73
+
1. Fork it.
74
+
1. Create a topic branch `git checkout -b my_branch`
75
+
1. Make your changes and add an entry to the [CHANGELOG](CHANGELOG.md).
76
+
1. Commit your changes `git commit -am "Boom"`
77
+
1. Push to your branch `git push origin my_branch`
78
+
1. Send a [pull request](https://github.com/honeybadger-io/cli/pulls)
79
+
68
80
### Releasing
69
81
70
82
To publish a new release:
@@ -75,7 +87,7 @@ To publish a new release:
75
87
git push origin v1.0.0
76
88
```
77
89
78
-
2. The release workflow will automatically:
90
+
1. The release workflow will automatically:
79
91
- Build binaries for multiple platforms (Linux, macOS, Windows)
80
92
- Create a GitHub release with the binaries
81
93
- Generate a changelog from commit messages
@@ -86,4 +98,4 @@ Note: Commits with messages containing `[skip ci]` will skip the test workflow,
86
98
87
99
## License
88
100
89
-
MIT License
101
+
MIT License. See the [LICENSE](https://raw.githubusercontent.com/honeybadger-io/cli/master/LICENSE) file in this repository for details.
0 commit comments