From 81db18883b9a3f06e8d967a2970293473f937007 Mon Sep 17 00:00:00 2001 From: sighphyre Date: Fri, 8 Dec 2023 15:27:49 +0200 Subject: [PATCH] remove mayberacy test --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be61202..3dec5d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,9 +27,6 @@ jobs: run: go vet ./... - name: Run spec tests run: go test -v ./... -tags='norace' - - name: Run test subset with race detection - timeout-minutes: 1 - run: go test -race -covermode atomic -coverprofile=profile.cov -v ./... -tags='mayberacy' - name: Run all tests with race detection timeout-minutes: 1 run: go test -race -covermode atomic -coverprofile=profile.cov -v ./... -tags='!norace'