File: .travis.yml

package info (click to toggle)
golang-github-dreamitgetit-statuscake 0.0~git20220607.de57c59-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 308 kB
  • sloc: makefile: 19
file content (14 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: go
go:
  - "1.x"

env:
  - DEP_VERSION="0.5.0"

before_install:
  # Install dep
  - curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
  - chmod +x $GOPATH/bin/dep

  # Install golint
  - go get golang.org/x/lint/golint