mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 12:46:44 +00:00
docs: add quick build and test snippet to README
Adds a small “quick build and test” snippet showing make geth and go test ./... to help contributors validate changes locally
This commit is contained in:
parent
e63e37be5e
commit
64a2eecf5e
1 changed files with 10 additions and 0 deletions
10
README.md
10
README.md
|
|
@ -29,7 +29,17 @@ or, to build the full suite of utilities:
|
||||||
```shell
|
```shell
|
||||||
make all
|
make all
|
||||||
```
|
```
|
||||||
|
### Quick build and test
|
||||||
|
|
||||||
|
For a minimal local verification of your build:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Build the main geth binary
|
||||||
|
make geth
|
||||||
|
|
||||||
|
# Run the basic Go test suite
|
||||||
|
go test ./...
|
||||||
|
```
|
||||||
## Executables
|
## Executables
|
||||||
|
|
||||||
The go-ethereum project comes with several wrappers/executables found in the `cmd`
|
The go-ethereum project comes with several wrappers/executables found in the `cmd`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue