Skip to content

Commit cacd25c

Browse files
fix: minor fixes
1 parent 831eb2c commit cacd25c

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,6 @@ jobs:
7373
- name: Download and verify dependencies
7474
run: make deps
7575

76-
# - name: Setup tmate session
77-
# uses: mxschmitt/action-tmate@v3
78-
7976
- name: Run unit tests
8077
run: make unit-test
8178

Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,8 @@ e2e-test:
6969
.PHONY: test-coverage
7070
test-coverage:
7171
@echo "Running tests with coverage..."
72-
@which go > /dev/null || (echo "Go not found in PATH" && exit 1)
73-
sudo $(shell which go) test -v -race -coverprofile=coverage.out ./...
74-
$(shell which go) tool cover -html=coverage.out -o coverage.html
75-
@echo "✓ Coverage report generated: coverage.html"
72+
go test -v -race -coverprofile=coverage.out ./...
73+
go tool cover -html=coverage.out -o coverage.html
7674

7775
# CI checks (deps, test, build)
7876
.PHONY: ci

0 commit comments

Comments
 (0)