github.com/ndau/noms@v1.0.5/HACKING.md (about)

     1  # Prerequisites
     2  
     3  * [Go 1.13 or later](https://golang.org/dl/)
     4  * Mac or Linux (Noms isn't currently supported on Windows)
     5  
     6  # Get
     7  
     8  ```
     9  git clone https://github.com/attic-labs/noms
    10  ```
    11  
    12  # Build
    13  
    14  ```
    15  cd noms
    16  go build ./cmd/noms
    17  ```
    18  
    19  # Test
    20  
    21  ```
    22  cd noms
    23  go test ./go/...
    24  go test ./cmd/...
    25  ```
    26  
    27  # Release
    28  
    29  Travis automatically creates releases for tagged versions, so the following should do it:
    30  
    31  ```
    32  git tag latest -f
    33  git push origin latest
    34  ```