mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 16:53:25 +01:00
13 lines
294 B
YAML
Vendored
13 lines
294 B
YAML
Vendored
sudo: false
|
|
language: go
|
|
go:
|
|
- "1.13.x"
|
|
script:
|
|
- go test -v ./...
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s v1.26.0
|
|
- ./bin/golangci-lint run
|
|
- git clean -fdx .
|
|
after_success:
|
|
curl -sL https://git.io/goreleaser | bash && goreleaser
|
|
|