From 2f5cb62e1fa7874e7044f825095c79155a7776c4 Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Thu, 19 Jan 2023 15:16:19 +0100 Subject: [PATCH] ci: cleanup tags Signed-off-by: Mark Sagi-Kazar --- .github/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index abcaed7a2..eaf9f6464 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,7 +44,6 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] go: ['1.16', '1.17', '1.18', '1.19'] - tags: [''] env: GOFLAGS: -mod=readonly @@ -58,11 +57,11 @@ jobs: uses: actions/checkout@v3 - name: Test - run: go test -race -tags '${{ matrix.tags }}' -v ./... + run: go test -race -v ./... if: runner.os != 'Windows' - name: Test (without race detector) - run: go test -tags '${{ matrix.tags }}' -v ./... + run: go test -v ./... if: runner.os == 'Windows' lint: