forked from darcys22/godbledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (36 loc) · 819 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
language: go
go_import_path: github.com/darcys22/godbledger
sudo: false
jobs:
include:
- stage: lint
os: linux
dist: xenial
go: 1.14.x
env:
- lint
git:
submodules: false # avoid cloning ethereum/tests
script:
- go run utils/ci.go lint
# These are the latest Go versions.
- stage: build
os: linux
arch: amd64
dist: bionic
go: 1.13.x
env:
- GO111MODULE=on
script:
- go run utils/ci.go install
- go run utils/ci.go test -coverage $TEST_PACKAGES
- stage: build
os: linux
arch: amd64
dist: bionic
go: 1.14.x
env:
- GO111MODULE=on
script:
- go run utils/ci.go install
- go run utils/ci.go test -coverage $TEST_PACKAGES