delve/vendor/github.com/go-delve/gore/CONTRIBUTING.md
Derek Parker dda8f693e6
*: Use forked goretk/gore module (#3597)
This allows us to update this dependency on our schedule which is important because the module relies on manually updating the known list of Go versions to function correctly. Forking allows us to keep this up to date ourselves and possibly create a new system to prevent having to perform this manual step in the future.
2023-12-12 10:13:32 +01:00

28 lines
852 B
Markdown

# Want to contribute?
We welcome tickets, pull requests, feature suggestions.
When developing, please try to comply to the general code style that we try to
maintain across the project. When introducing new features or fixing
significant bugs, please provide tests and also include some concise
information.
## Test resources
A lot of tests in the library requires test resources. Due to the total size of
these files, they are not included with the source code. The `testdata` folder
contains a helper script that can be used to build them. For building the
resources locally `docker` is used. They are also stored in a separate repo that
can be accessed by running: `git submodule update --init --recursive`
Build missing resources:
```
./testdata/helper.sh build
```
## Download the latest Go compiler release information
```
go generate
```