git » dnss » commit 9ef528c

travis.yml: Test from Go 1.9 upwards (drop 1.7 and 1.8 support)

author Alberto Bertogli
2018-07-16 22:10:31 UTC
committer Alberto Bertogli
2018-07-16 22:10:31 UTC
parent e0029a97bd8cbdfe088622dd63d3e37a98c8f6b3

travis.yml: Test from Go 1.9 upwards (drop 1.7 and 1.8 support)

github.com/miekg/dns is one of our core dependencies, and recent changes
to it have brought its minimum version to Go 1.9.

So this patch adjust dnss' Travis CI configuration accordingly.

.travis.yml +3 -3

diff --git a/.travis.yml b/.travis.yml
index 2a98193..82873de 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,9 +4,9 @@ language: go
 go_import_path: blitiri.com.ar/go/dnss
 
 go:
-    - 1.7
-    - 1.8
-    - tip
+    - 1.9
+    - stable
+    - master
 
 script:
     - go test ./...