Skip to content

Commit 22b1478

Browse files
Merge pull request #25 from hellofresh/patch/minor-tweaks
Minor readme and dep tweaks
2 parents 7d07dc7 + e565811 commit 22b1478

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

Gopkg.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
required = [
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"

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

33
GoEngine 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)
3232
We encourage and support an active, healthy community of contributors — including you!
3333
Details 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/

test/internal/postgres.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ func (s *PostgresSuite) TearDownTest() {
199199
func 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)

0 commit comments

Comments
 (0)