File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 11required = [
22 " github.com/golang/mock/mockgen"
33]
4+ ignored = [
5+ " github.com/hellofresh/goengine/example/*"
6+ ]
47
58[[override ]]
69 name = " gopkg.in/fsnotify.v1"
Original file line number Diff line number Diff line change 1- # GoEngine [ ![ GitHub] [ license-img ]] [ license ] [ ![ GoDoc] [ doc-img ]] [ doc ] [ ![ Build Status] [ ci-img ]] [ ci ] [ ![ Code Coverage] [ cov-img ]] [ cov ]
1+ # 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 ]
22
33GoEngine is an Event Sourcing library written for GoLang.
44
@@ -32,6 +32,14 @@ The following features are planned for the future (in no specific order)
3232We encourage and support an active, healthy community of contributors — including you!
3333Details are in the [ contribution guide] ( CONTRIBUTING.md ) and the [ code of conduct] ( CODE_OF_CONDUCT.md ) .
3434
35+ ------------------
36+ <p align =" center " >
37+ <a href="https://hellofresh.com" style="text-decoration:none; margin-right:2rem;">
38+ <img height="110" src="https://www.hellofresh.de/images/hellofresh/press/HelloFresh_Logo.png">
39+ </a >
40+ </p >
41+
42+
3543[ doc-img ] : https://godoc.org/github.com/hellofresh?status.svg
3644[ doc ] : https://godoc.org/github.com/hellofresh/goengine
3745[ ci-img ] : https://travis-ci.org/hellofresh/goengine.svg?branch=master
@@ -40,5 +48,7 @@ Details are in the [contribution guide](CONTRIBUTING.md) and the [code of conduc
4048[ cov ] : https://codecov.io/gh/hellofresh/goengine
4149[ license-img ] : https://img.shields.io/github/license/hellofresh/goengine.svg?style=flat
4250[ license ] : LICENSE
51+ [ go-report-img ] :https://goreportcard.com/badge/github.com/hellofresh/goengine
52+ [ go-report ] : https://goreportcard.com/report/github.com/hellofresh/goengine
4353[ goengine-book ] : https://goengine.readthedocs.io/en/latest/
4454[ goengine-book-quick-start ] : https://goengine.readthedocs.io/en/latest/quick-start/
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ func (s *PostgresSuite) TearDownTest() {
199199func postgresDSN (t * testing.T ) string {
200200 // Fetch the postgres dsn from the env var
201201 osDSN , exists := os .LookupEnv ("POSTGRES_DSN" )
202- require .True (t , exists , "test.postgres: missing POSTGRES_DSN enviroment variable" )
202+ require .True (t , exists , "test.postgres: missing POSTGRES_DSN environment variable" )
203203
204204 // Parse the postgres dsn
205205 parsedDSN , err := pq .ParseURL (osDSN )
You can’t perform that action at this time.
0 commit comments