mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 03:36:33 +03:00
29 lines
329 B
YAML
29 lines
329 B
YAML
sudo: required
|
|
dist: trusty
|
|
group: deprecated-2017Q4
|
|
|
|
language: go
|
|
|
|
services:
|
|
- docker
|
|
|
|
addons:
|
|
postgresql: "9.6"
|
|
|
|
go:
|
|
- 1.10.x
|
|
- 1.11.x
|
|
|
|
before_install:
|
|
- ./script/check_formatting.sh
|
|
- ./script/check_assets.sh
|
|
|
|
install:
|
|
- make setup
|
|
|
|
script:
|
|
- make build
|
|
- make test
|
|
- make test-all
|
|
- make docker-release
|