-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (32 loc) · 773 Bytes
/
.travis.yml
File metadata and controls
40 lines (32 loc) · 773 Bytes
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
sudo: false
os:
- linux
- osx
- windows
language: go
# Versions of go that are explicitly supported by gonum plus go tip.
go:
- 1.15.x
- 1.14.x
- master
env:
global:
- GO111MODULE=on
matrix:
fast_finish: true
exclude:
- os: windows
go: 1.14.x
- os: windows
go: 1.14.x
- os: windows
go: master
allow_failures:
- go: master
before_install:
- ${TRAVIS_BUILD_DIR}/.travis/run-parts ${TRAVIS_BUILD_DIR}/.travis/deps.d/${TRAVIS_OS_NAME}
go_import_path: gonum.org/v1/exp
# Get deps, build, test, and ensure the code is gofmt'ed.
# If we are building as gonum, then we have access to the coveralls api key, so we can run coverage as well.
script:
- ${TRAVIS_BUILD_DIR}/.travis/run-parts ${TRAVIS_BUILD_DIR}/.travis/run.d/${TRAVIS_OS_NAME}