Skip to content

Commit

Permalink
Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
aneshas committed Oct 6, 2024
1 parent a7e1671 commit b69b0d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
go-version: 1.17

- name: Test
run: go test -race -covermode=atomic -coverprofile=coverage.out -v `go list ./... | grep -v ./example` -integration
run: |
go mod tidy
go test -race -covermode=atomic -coverprofile=coverage.out -v `go list ./... | grep -v ./example` -integration
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# TODO
- [ ] store tests
- [ ] alternate On method and alternate apply
- [ ] correlation from context
- [ ] correlation from context (helper methods in aggregate to set correlation and meta)
- [ ] projections only for simple local testing simplify and document
- [ ] autogenerate ID in aggregate
- [ ] complete example with echo and mutation
Expand Down

0 comments on commit b69b0d8

Please sign in to comment.