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
parent d8a1ba504d
commit 820f2c22dd
No known key found for this signature in database
GPG key ID: 31AB0439F4C5C90E

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: