mirror of
https://github.com/gogs/gogs.git
synced 2025-05-01 05:01:40 +00:00
16 lines
224 B
YAML
16 lines
224 B
YAML
language: go
|
|
go:
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- 1.10.x
|
|
- master
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y libpam-dev
|
|
|
|
script:
|
|
- go build -v -tags "pam"
|
|
- go test -v -cover -race ./...
|