Skip to content

Commit

Permalink
ci: cleanup tags
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
  • Loading branch information
sagikazarmark committed Jan 19, 2023
1 parent 77fc1c3 commit 2f5cb62
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yaml
Expand Up @@ -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

Expand All @@ -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:
Expand Down

0 comments on commit 2f5cb62

Please sign in to comment.