mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
19 lines
344 B
YAML
19 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 ./...
|