mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
9de77b21b2
Adds support for datasync, V1Messages and disabling the discovery topic. This is a backward compatible change as long as they are not toggled on (they are not by default).
24 lines
354 B
YAML
24 lines
354 B
YAML
box: golang
|
|
|
|
build:
|
|
steps:
|
|
- setup-go-workspace
|
|
|
|
# Gets the dependencies
|
|
- script:
|
|
name: go get
|
|
code: |
|
|
go get
|
|
|
|
# Build the project
|
|
- script:
|
|
name: go build
|
|
code: |
|
|
go build ./...
|
|
|
|
# Test the project
|
|
- script:
|
|
name: go test
|
|
code: |
|
|
go test ./...
|