File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v4
19
- - uses : actions/setup-go@v5
18
+ uses : actions/checkout@v5
19
+ - uses : actions/setup-go@v6
20
20
with :
21
- go-version : " 1.20 "
21
+ go-version : " 1.22 "
22
22
- name : Install dependencies
23
23
run : |
24
24
go get -t -v ./...
Original file line number Diff line number Diff line change 15
15
uses : actions/checkout@v4
16
16
- uses : actions/setup-go@v5
17
17
with :
18
- go-version : " 1.20 "
18
+ go-version : " 1.22 "
19
19
- name : Install dependencies
20
20
run : |
21
21
go get -t -v ./...
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ linters:
14
14
- mnd
15
15
- recvcheck
16
16
- wsl
17
+ - wsl_v5
18
+ - godoclint
17
19
- makezero
18
20
- godox
19
21
- gocognit
@@ -22,6 +24,7 @@ linters:
22
24
- forcetypeassert
23
25
- containedctx
24
26
- maintidx
27
+ - noinlineerr
25
28
settings :
26
29
exhaustive :
27
30
# Program elements to check for exhaustiveness.
Original file line number Diff line number Diff line change @@ -736,7 +736,9 @@ const (
736
736
queryOperation operationType = iota
737
737
mutationOperation
738
738
// subscriptionOperation // Unused.
739
+ )
739
740
741
+ const (
740
742
ErrRequestError = "request_error"
741
743
ErrJsonEncode = "json_encode_error"
742
744
ErrJsonDecode = "json_decode_error"
You can’t perform that action at this time.
0 commit comments