GoLang_Project/.travis.yml
2020-10-07 09:43:33 +03:00

36 lines
504 B
YAML

language: go
go:
- "1.14"
os:
- linux
git:
depth: 1
quiet: true
submodules: false
notifications:
email: true
env:
global:
- GO111MODULE=on
- GOPROXY=https://proxy.golang.org
- BRANCH="${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}"
stages:
- name: Tests
jobs:
include:
- stage: "Tests"
name: "Makefile"
install: go mod download
script:
- make lint
- make test
- make build
if: (type = push) OR (type = pull_request)