-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mongo): enhance EventStore with transaction hooks and detailed c…
…omments
- Loading branch information
Showing
9 changed files
with
872 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
FROM golang:1.18 | ||
ARG TAGS | ||
ARG TEST_PATH=./... | ||
ENV TAGS $TAGS | ||
ENV TEST_PATH $TEST_PATH | ||
WORKDIR /test | ||
COPY go.mod go.sum /test/ | ||
RUN go mod download | ||
COPY . . | ||
CMD go test -v -tags=$TAGS ./... | ||
CMD go test -v -tags=$TAGS $TEST_PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
.PHONY: docs | ||
docs: | ||
@./scripts/clear.sh | ||
@./scripts/docs.sh | ||
|
||
.PHONY: generate | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.