horsepaste/.travis.yml
joshii 0046177494
Some checks are pending
Build horsepaste / build (push) Waiting to run
Initial commit
2026-03-15 13:36:37 +01:00

20 lines
389 B
YAML

language: go
install:
- go get -d -t -v ./...
- go get -v golang.org/x/lint/golint
matrix:
include:
- name: "go1.13.x-linux"
go: 1.13.x
os: linux
script: go test ./...
- name: "go1.14.x-linux"
go: 1.14.x
os: linux
script: go test ./...
- name: "go1.13.x-linux-race"
go: 1.13.x
os: linux
script: go test -race ./...