Skip to content

Commit 56f48cc

Browse files
committed
will not test on go 1.11
1 parent 171d6e2 commit 56f48cc

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ on:
33
push:
44
paths:
55
- '**.go'
6-
- '**.mod'
6+
- 'go.mod'
7+
- '**.yml'
78

89
jobs:
910

@@ -12,7 +13,7 @@ jobs:
1213
runs-on: ${{ matrix.os }}
1314
strategy:
1415
matrix:
15-
go_version: [1.11, 1.12, 1.13, 1.14]
16+
go_version: [1.12, 1.13, 1.14]
1617
os: [ubuntu-latest, windows-latest, macOS-latest]
1718

1819
steps:
@@ -25,11 +26,5 @@ jobs:
2526
with:
2627
go-version: ${{ matrix.go_version }}
2728

28-
- name: Get dependencies
29-
run: |
30-
go get -v -d ./...
31-
go get github.com/mattn/goveralls
32-
go get golang.org/x/tools/cmd/cover
33-
3429
- name: Run unit tests
3530
run: go test -v -cover ./...

0 commit comments

Comments
 (0)