Skip to content

Commit 02bca95

Browse files
authored
Drop Go 1.15 support (#191)
1 parent 4600238 commit 02bca95

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

.github/workflows/main.yml

+1-11
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ ubuntu-latest, macos-latest, windows-latest ]
20-
go: [ '1.15', 'stable', 'oldstable' ]
20+
go: [ 'stable', 'oldstable' ]
2121

2222
runs-on: ${{ matrix.os }}
2323
steps:
@@ -42,17 +42,7 @@ jobs:
4242
run: |
4343
go mod verify
4444
45-
- name: Test Go 1.15
46-
# This step if needed because -shuffle not available on Go 1.15.
47-
# Tests are failing on MacOS. So, we just disable it.
48-
if: >-
49-
matrix.go == '1.15' && matrix.os != 'macos-latest'
50-
run: |
51-
go test -v -race -cover ./...
52-
5345
- name: Test
54-
if: >-
55-
matrix.go != '1.15'
5646
run: |
5747
go test -v -race -shuffle=on -cover ./...
5848

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/gobwas/ws
22

3-
go 1.15
3+
go 1.16
44

55
require (
66
github.com/gobwas/httphead v0.1.0

go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@ github.com/gobwas/httphead v0.1.0 h1:exrUm0f4YX0L7EBwZHuCF4GDp8aJfVeBrlLQrs6NqWU
22
github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM=
33
github.com/gobwas/pool v0.2.1 h1:xfeeEhW7pwmX8nuLVlqbzVc7udMDrwetjEv+TZIz1og=
44
github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw=
5-
golang.org/x/sys v0.0.0-20201207223542-d4d67f95c62d h1:MiWWjyhUzZ+jvhZvloX6ZrUsdEghn8a64Upd8EMHglE=
6-
golang.org/x/sys v0.0.0-20201207223542-d4d67f95c62d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
75
golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
86
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

0 commit comments

Comments
 (0)