* Update the Travis and CircleCI Go versions * Adapt to new gofmt formatting The formatting of gofmt changed slightly in go 1.11. The release notes recommend to use a specific binary of gofmt. See https://golang.org/doc/go1.11#gofmt This commit adapts to the new formatting applied by gofmt and changes the configs for travis and circleci to run gofmt only with go 1.11.
		
			
				
	
	
		
			23 lines
		
	
	
		
			550 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			550 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: go
 | 
						|
 | 
						|
matrix:
 | 
						|
  include:
 | 
						|
    - go: 1.10.x
 | 
						|
    - go: 1.11.x
 | 
						|
    - go: tip
 | 
						|
    - go: 1.11.x
 | 
						|
      script: diff -u <(echo -n) <(gofmt -d -s .)
 | 
						|
  allow_failures:
 | 
						|
    - go: tip
 | 
						|
 | 
						|
before_install:
 | 
						|
  - mkdir -p bin
 | 
						|
  - curl -Lso bin/shellcheck https://github.com/caarlos0/shellcheck-docker/releases/download/v0.4.3/shellcheck
 | 
						|
  - chmod +x bin/shellcheck
 | 
						|
script:
 | 
						|
  - PATH=$PATH:$PWD/bin go test -v ./...
 | 
						|
  - go build
 | 
						|
  - if [ -z $NOVET ]; then
 | 
						|
      diff -u <(echo -n) <(go tool vet . 2>&1 | grep -vE 'ExampleCommand|bash_completions.*Fprint');
 | 
						|
    fi
 |