We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e20ea8 commit edc462dCopy full SHA for edc462d
.github/workflows/test.yml
@@ -36,3 +36,12 @@ jobs:
36
run: go test -gcflags=all=-d=checkptr -count 10 -v ./...
37
env:
38
GO_OPENSSL_VERSION_OVERRIDE: ${{ matrix.openssl-version }}
39
+ - name: Run Test with address sanitizer
40
+ run: |
41
+ ok=true
42
+ for t in $(go test ./... -list=. | grep '^Test'); do
43
+ go test ./... -gcflags=all=-d=checkptr -asan -run $t -v || ok=false
44
+ done
45
+ $ok
46
+ env:
47
+ GO_OPENSSL_VERSION_OVERRIDE: ${{ matrix.openssl-version }}
0 commit comments