1dist: xenial
2language: go
3
4go:
5  - 1.14.x
6  - 1.15.x
7  - tip
8
9matrix:
10  allow_failures:
11    - go: tip
12
13env:
14  - GO111MODULE=on
15
16go_import_path: github.com/vmihailenco/tagparser
17
18before_install:
19  - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.17.1
20