Commit f3a6d2e6 authored by Janoš Guljaš's avatar Janoš Guljaš Committed by GitHub

disable race detector on windows github actions (#102)

parent 54f1ca36
......@@ -42,5 +42,12 @@ jobs:
run: make vet
- name: Build
run: make build
- name: Test with Race Detector
# do not tests with race detector on windows
# until the issue with badgerdb memory allocation
# is solved in this case
if: matrix.os != 'windows-latest'
run: make test-race
- name: Test
if: matrix.os == 'windows-latest'
run: make test
......@@ -26,6 +26,10 @@ lint:
vet:
$(GO) vet ./...
.PHONY: test-race
test-race:
$(GO) test -race -v ./...
.PHONY: test
test:
$(GO) test -v ./...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment