We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b188144 commit f93b3f3Copy full SHA for f93b3f3
.github/workflows/test.yml
@@ -62,6 +62,21 @@ jobs:
62
name: codecov-${{ matrix.os }}-${{ matrix.go }}
63
continue-on-error: true
64
65
+ race-check:
66
+ name: Race Detector
67
+ runs-on: ubuntu-latest
68
+ steps:
69
+ - uses: actions/checkout@v4
70
+
71
+ - name: Set up Go
72
+ uses: actions/setup-go@v5
73
+ with:
74
+ go-version: '1.24'
75
+ cache: true
76
77
+ - name: Run tests with race detector
78
+ run: go test -race -short ./...
79
80
benchmark:
81
name: Benchmark
82
runs-on: ubuntu-latest
0 commit comments