Skip to content

Commit c3adc84

Browse files
committed
test(ci): add go test step to release workflow
Added a step to run `go test -v ./...` in the release workflow to ensure tests are executed before building. This helps catch issues early and improves CI reliability.
1 parent 5b25c5c commit c3adc84

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
run: |
2727
go get -v -t ./...
2828
29+
- name: Test
30+
run: |
31+
go test -v ./...
32+
2933
- name: Build
3034
run: |
3135
./build.sh build

0 commit comments

Comments
 (0)