Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor readme and dep tweaks #25

Merged
merged 4 commits into from
Mar 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
required = [
"github.com/golang/mock/mockgen"
]
ignored = [
"github.com/hellofresh/goengine/example/*"
]

[[override]]
name = "gopkg.in/fsnotify.v1"
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GoEngine [![GitHub][license-img]][license] [![GoDoc][doc-img]][doc] [![Build Status][ci-img]][ci] [![Code Coverage][cov-img]][cov]
# GoEngine [![GitHub][license-img]][license] [![GoDoc][doc-img]][doc] [![Build Status][ci-img]][ci] [![Code Coverage][cov-img]][cov] [![Go Report Card][go-report-img]][go-report]

GoEngine is an Event Sourcing library written for GoLang.

Expand Down Expand Up @@ -32,6 +32,14 @@ The following features are planned for the future (in no specific order)
We encourage and support an active, healthy community of contributors — including you!
Details are in the [contribution guide](CONTRIBUTING.md) and the [code of conduct](CODE_OF_CONDUCT.md).

------------------
<p align="center">
<a href="https://hellofresh.com" style="text-decoration:none; margin-right:2rem;">
<img height="110" src="https://www.hellofresh.de/images/hellofresh/press/HelloFresh_Logo.png">
</a>
</p>


[doc-img]: https://godoc.org/github.com/hellofresh?status.svg
[doc]: https://godoc.org/github.com/hellofresh/goengine
[ci-img]: https://travis-ci.org/hellofresh/goengine.svg?branch=master
Expand All @@ -40,5 +48,7 @@ Details are in the [contribution guide](CONTRIBUTING.md) and the [code of conduc
[cov]: https://codecov.io/gh/hellofresh/goengine
[license-img]: https://img.shields.io/github/license/hellofresh/goengine.svg?style=flat
[license]: LICENSE
[go-report-img]:https://goreportcard.com/badge/github.com/hellofresh/goengine
[go-report]: https://goreportcard.com/report/github.com/hellofresh/goengine
[goengine-book]: https://goengine.readthedocs.io/en/latest/
[goengine-book-quick-start]: https://goengine.readthedocs.io/en/latest/quick-start/
2 changes: 1 addition & 1 deletion test/internal/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func (s *PostgresSuite) TearDownTest() {
func postgresDSN(t *testing.T) string {
// Fetch the postgres dsn from the env var
osDSN, exists := os.LookupEnv("POSTGRES_DSN")
require.True(t, exists, "test.postgres: missing POSTGRES_DSN enviroment variable")
require.True(t, exists, "test.postgres: missing POSTGRES_DSN environment variable")

// Parse the postgres dsn
parsedDSN, err := pq.ParseURL(osDSN)
Expand Down