ci: cleanup tags

Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
This commit is contained in:
Mark Sagi-Kazar 2023-01-19 15:16:19 +01:00 committed by Márk Sági-Kazár
parent 77fc1c3084
commit 2f5cb62e1f
1 changed files with 2 additions and 3 deletions

View File

@ -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: