.travis.yml in licensed-1.0.1 vs .travis.yml in licensed-1.1.0
- old
+ new
@@ -6,17 +6,31 @@
- language: ruby
rvm: 2.4.0
script: bundle exec rake rubocop build
env: NAME="Lint and Build"
- # go tests
+ # go 1.7 tests
- language: go
- go: 1.7.x
+ go: "1.7.x"
before_script: ./script/source-setup/go
script: ./script/test go
env: NAME="go"
+ # go 1.10 tests
+ - language: go
+ go: "1.10.x"
+ before_script: ./script/source-setup/go
+ script: ./script/test go
+ env: NAME="go"
+
+ # dep tests
+ - language: go
+ go: "1.10.x"
+ before_script: ./script/source-setup/go
+ script: ./script/test dep
+ env: NAME="go dep"
+
# cabal tests
- language: haskell
ghc: "8.2"
before_script: ./script/source-setup/cabal
script: ./script/test cabal
@@ -48,8 +62,24 @@
# manifest tests
- language: ruby
rvm: 2.4.0
script: ./script/test manifest
env: NAME="manifest"
+
+ # python 2.7 tests
+ - language: python
+ python:
+ - "2.7"
+ before_script: ./script/source-setup/pip
+ script: ./script/test pip
+ env: NAME="pip"
+
+ # python 3.6 tests
+ - language: python
+ python:
+ - "3.6"
+ before_script: ./script/source-setup/pip
+ script: ./script/test pip
+ env: NAME="pip"
notifications:
disable: true