Skip to content
Snippets Groups Projects

Don't run lint on go1.5, but run everything on go1.6 and go1.7

Merged Nick Thomas requested to merge nick.thomas/gitlab-pages:40-fix-ci into master
2 files
+ 14
2
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 12
1
@@ -8,6 +8,17 @@ before_script:
- ln -sfv "$(pwd -P)" "$GODIR"
- cd "$GODIR"
test:
test:1.5:
image: golang:1.5
script:
- make verify-lite
test:1.6:
image: golang:1.6
script:
- make verify
test:1.7:
image: golang:1.7
script:
- make verify
Loading