mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
20 lines
344 B
YAML
20 lines
344 B
YAML
|
# Travis CI (http://travis-ci.org/) is a continuous integration service for
|
||
|
# open source projects. This file configures it to run unit tests for
|
||
|
# meddler.
|
||
|
|
||
|
language: go
|
||
|
|
||
|
go:
|
||
|
- "1.9.x"
|
||
|
- "1.10.x"
|
||
|
- "1.11.x"
|
||
|
- "1.12.x"
|
||
|
- "1.13.x"
|
||
|
|
||
|
install:
|
||
|
- go get -d -t -v ./...
|
||
|
- go build -v ./...
|
||
|
|
||
|
script:
|
||
|
- go test -v ./...
|