Skip to content

Commit 1a7abef

Browse files
committed
.github/workflows: skip tests for Windows
Updates #259
1 parent 17dc000 commit 1a7abef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
go build -v .
7878
7979
- name: go test
80-
# Unfortunately, some tests time out on Linux (#259).
81-
if: runner.os != 'Linux'
80+
# Unfortunately, some tests time out on Linux and Windows (#259).
81+
if: runner.os != 'Linux' && runner.os != 'Windows'
8282
run: |
8383
go test -shuffle=on -v -count=10 ./...

0 commit comments

Comments
 (0)