Skip to content

Commit 824fb87

Browse files
committed
ci: fix build path for test workflow
1 parent b21744d commit 824fb87

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test_push_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
- name: Build application
1818
env:
1919
GOPROXY: "https://proxy.golang.org"
20-
run: go build .
20+
run: go build ./cmd/main.go
2121

2222
- name: Run tests
2323
env:
2424
GOPROXY: "https://proxy.golang.org"
25-
run: go test -v .
25+
run: go test -v ./cmd/main.go

0 commit comments

Comments
 (0)