mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-14 10:23:02 +03:00
8e2c826ba3
- use go embed instead of go-binary and remove all about old assets (go 1.16 feature) - pin gox version (go 1.16 feature) - update ci to go 1.16
26 lines
288 B
YAML
26 lines
288 B
YAML
sudo: required
|
|
dist: trusty
|
|
group: deprecated-2017Q4
|
|
|
|
language: go
|
|
|
|
services:
|
|
- docker
|
|
|
|
addons:
|
|
postgresql: "9.6"
|
|
|
|
go:
|
|
- "1.16"
|
|
|
|
before_install:
|
|
- ./script/check_formatting.sh
|
|
|
|
install:
|
|
- make setup
|
|
|
|
script:
|
|
- make build
|
|
- make test
|
|
- make test-all
|
|
- make docker-release |