Skip to content

Commit 5a77d92

Browse files
Ajit Pratap SinghAjit Pratap Singh
authored andcommitted
test: improve coverage and error handling per architect review
1 parent 838d0e1 commit 5a77d92

File tree

4 files changed

+521
-1
lines changed

4 files changed

+521
-1
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,21 @@ jobs:
5959
name: codecov-${{ matrix.os }}-${{ matrix.go }}
6060
continue-on-error: true
6161

62+
race-check:
63+
name: Race Detector
64+
runs-on: ubuntu-latest
65+
steps:
66+
- uses: actions/checkout@v4
67+
68+
- name: Set up Go
69+
uses: actions/setup-go@v5
70+
with:
71+
go-version: '1.24'
72+
cache: true
73+
74+
- name: Run tests with race detector
75+
run: go test -race -short ./...
76+
6277
benchmark:
6378
name: Benchmark
6479
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)