mirror of
https://github.com/status-im/status-console-client.git
synced 2025-02-24 00:28:18 +00:00
28 lines
404 B
YAML
28 lines
404 B
YAML
notifications:
|
|
email: false
|
|
|
|
language: go
|
|
|
|
install: true
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
before_script:
|
|
- make install-linter
|
|
|
|
matrix:
|
|
include:
|
|
- go: "1.11.x"
|
|
env: GOFLAGS=-mod=vendor
|
|
script:
|
|
- make lint
|
|
# fails without -a
|
|
- go test -a ./... # make test
|
|
- go: "1.12.x"
|
|
env: GOFLAGS=-mod=vendor
|
|
script:
|
|
- make lint
|
|
# fails without -a
|
|
- go test -a ./... # make test
|