Skip to content

Commit

Permalink
Merge pull request #4 from bsm/feature/travis
Browse files Browse the repository at this point in the history
CI integration
  • Loading branch information
dim authored Apr 25, 2019
2 parents d3779c5 + ea15bf2 commit d8a4568
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 153 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: go
go:
- 1.11.x
- 1.12.x
addons:
postgresql: "9.5"
services:
- postgresql
before_script:
- psql -c 'create database ci_test;' -U postgres
env:
- GO111MODULE=on DATABASE_DSN=postgres://127.0.0.1/ci_test
cache:
directories:
- $GOPATH/pkg/mod
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@ it's not picked up by another worker again.

Please see the [API documentation](https://godoc.org/github.com/bsm/accord) for
package and API descriptions and examples.

## Backends

* [PostgreSQL](https://godoc.org/github.com/bsm/accord/backend/postgres) - requires version >= 9.5.
* [Mock](https://godoc.org/github.com/bsm/accord/backend/mock) - in-memory backend, for testing only.
34 changes: 3 additions & 31 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,56 +3,28 @@ module github.com/bsm/accord
go 1.12

require (
cloud.google.com/go v0.37.4 // indirect
github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9 // indirect
github.com/DataDog/zstd v1.4.0 // indirect
github.com/Masterminds/squirrel v1.1.0
github.com/Shopify/sarama v1.22.0 // indirect
github.com/beorn7/perks v1.0.0 // indirect
github.com/dgraph-io/badger v2.0.0-rc.2+incompatible
github.com/dgryski/go-farm v0.0.0-20190416075124-e1214b5e05dc // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/go-logfmt/logfmt v0.4.0 // indirect
github.com/go-sql-driver/mysql v1.4.1 // indirect
github.com/gogo/protobuf v1.2.1 // indirect
github.com/golang/protobuf v1.3.1
github.com/google/btree v1.0.0 // indirect
github.com/google/pprof v0.0.0-20190404155422-f8f10df84213 // indirect
github.com/google/uuid v1.1.1
github.com/gorilla/mux v1.7.1 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/joho/godotenv v1.3.0
github.com/kisielk/errcheck v1.2.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/kr/pty v1.1.4 // indirect
github.com/lib/pq v1.1.0
github.com/mattn/go-sqlite3 v1.10.0 // indirect
github.com/onsi/ginkgo v1.8.0
github.com/onsi/gomega v1.5.0
github.com/pkg/errors v0.8.1 // indirect
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect
github.com/prometheus/common v0.3.0 // indirect
github.com/prometheus/procfs v0.0.0-20190416084830-8368d24ba045 // indirect
github.com/sirupsen/logrus v1.4.1 // indirect
github.com/stretchr/objx v0.2.0 // indirect
go.opencensus.io v0.20.2 // indirect
golang.org/x/crypto v0.0.0-20190422183909-d864b10871cd // indirect
golang.org/x/exp v0.0.0-20190422150234-47ea93f3503f // indirect
golang.org/x/image v0.0.0-20190417020941-4e30a6eb7d9a // indirect
golang.org/x/lint v0.0.0-20190409202823-959b441ac422 // indirect
golang.org/x/mobile v0.0.0-20190415191353-3e0bab5405d6 // indirect
golang.org/x/net v0.0.0-20190420063019-afa5a82059c6
golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a // indirect
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
github.com/stretchr/testify v1.3.0 // indirect
golang.org/x/net v0.0.0-20190420063019-afa5a82059c6 // indirect
golang.org/x/sys v0.0.0-20190422165155-953cdadca894 // indirect
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
golang.org/x/tools v0.0.0-20190422233926-fe54fb35175b // indirect
google.golang.org/api v0.3.2 // indirect
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2 // indirect
google.golang.org/appengine v1.5.0 // indirect
google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7 // indirect
google.golang.org/grpc v1.20.1
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a // indirect
)
Loading

0 comments on commit d8a4568

Please sign in to comment.