We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77fc1c3 commit 2f5cb62Copy full SHA for 2f5cb62
.github/workflows/ci.yaml
@@ -44,7 +44,6 @@ jobs:
44
matrix:
45
os: [ubuntu-latest, macos-latest, windows-latest]
46
go: ['1.16', '1.17', '1.18', '1.19']
47
- tags: ['']
48
env:
49
GOFLAGS: -mod=readonly
50
@@ -58,11 +57,11 @@ jobs:
58
57
uses: actions/checkout@v3
59
60
- name: Test
61
- run: go test -race -tags '${{ matrix.tags }}' -v ./...
+ run: go test -race -v ./...
62
if: runner.os != 'Windows'
63
64
- name: Test (without race detector)
65
- run: go test -tags '${{ matrix.tags }}' -v ./...
+ run: go test -v ./...
66
if: runner.os == 'Windows'
67
68
lint:
0 commit comments