mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
c61b902538
* Upgrade xorm to v1.0.0 * small nit * Fix tests * Update xorm * Update xorm * fix go.sum * fix test * Fix bug when dump * Fix bug * update xorm to latest * Fix migration test * update xorm to latest * Fix import order * Use xorm tag
21 lines
363 B
YAML
Vendored
21 lines
363 B
YAML
Vendored
---
|
|
kind: pipeline
|
|
name: testing
|
|
|
|
steps:
|
|
- name: test
|
|
pull: default
|
|
image: golang:1.11
|
|
commands:
|
|
- go get -u golang.org/x/lint/golint
|
|
- golint ./...
|
|
- go vet
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
GO111MODULE: "on"
|
|
when:
|
|
event:
|
|
- push
|
|
- tag
|
|
- pull_request |