mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
24 lines
264 B
YAML
Vendored
24 lines
264 B
YAML
Vendored
sudo: false
|
|
language: go
|
|
go_import_path: go.uber.org/multierr
|
|
|
|
env:
|
|
global:
|
|
- GO111MODULE=on
|
|
|
|
go:
|
|
- oldstable
|
|
- stable
|
|
|
|
before_install:
|
|
- go version
|
|
|
|
script:
|
|
- |
|
|
set -e
|
|
make lint
|
|
make cover
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|