From 5f3038c232861c90cd785742c50aeb19829d9832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Miri=C4=87?= Date: Wed, 7 Oct 2020 10:48:28 +0200 Subject: [PATCH] Remove quotes around regex --- .github/workflows/all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index d9ae416bd863..f04bef387248 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -76,7 +76,7 @@ jobs: export GOMAXPROCS=2 args=("-race") # Run with less concurrency on macOS and Windows to minimize flakiness. - if [[ "${{ matrix.platform }}" =~ "^(macos|windows).*" ]]; then + if [[ "${{ matrix.platform }}" =~ ^(macos|windows).* ]]; then unset args[0] export GOMAXPROCS=1 fi