Skip to content

Commit

Permalink
Merge pull request #25 from hellofresh/patch/minor-tweaks
Browse files Browse the repository at this point in the history
Minor readme and dep tweaks
  • Loading branch information
boekkooi-fresh committed Mar 1, 2019
2 parents 7d07dc7 + e565811 commit 22b1478
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
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

0 comments on commit 22b1478

Please sign in to comment.