Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
joanestebanr committed Jul 25, 2024
1 parent 62f3fed commit b0a99e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: checkout kurtosis-cdk
uses: actions/checkout@v4
with:
repository: git@github.com:0xPolygon/kurtosis-cdk.git
repository: https://github.com/0xPolygon/kurtosis-cdk.git
ref: jesteban/cdk-seq_sender
path: "ext/kurtosis-cdk"

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test-unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,9 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v3

- name: Build Docker
run: make test
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ stop: ## Stops all services

.PHONY: test
test:
go test -count=1 -short -race -p 1 -timeout 60s ./...
#go test -count=1 -short -race -p 1 -timeout 60s ./...
trap '$(STOP)' EXIT; MallocNanoZone=0 go test -count=1 -short -race -p 1 -covermode=atomic -coverprofile=../coverage.out -coverpkg ./... -timeout 200s ./...

.PHONY: install-linter
install-linter: ## Installs the linter
Expand Down

0 comments on commit b0a99e3

Please sign in to comment.