File tree Expand file tree Collapse file tree 3 files changed +53
-0
lines changed Expand file tree Collapse file tree 3 files changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Go
2
+ on :
3
+ pull_request :
4
+ push :
5
+ branches : [master]
6
+
7
+ jobs :
8
+ verify :
9
+ name : Verify
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Set up Go 1.16
13
+ uses : actions/setup-go@v2
14
+ with :
15
+ go-version : 1.16
16
+
17
+ - name : Check out code into the Go module directory
18
+ uses : actions/checkout@v2
19
+
20
+ - name : Lint
21
+ uses : golangci/golangci-lint-action@v2
22
+ with :
23
+ version : v1.28
24
+
25
+ - name : Test
26
+ run : go test -v ./...
Original file line number Diff line number Diff line change
1
+ /patch2pr
Original file line number Diff line number Diff line change
1
+ run :
2
+ tests : false
3
+
4
+ linters :
5
+ disable-all : true
6
+ enable :
7
+ - deadcode
8
+ - errcheck
9
+ - gofmt
10
+ - goimports
11
+ - golint
12
+ - govet
13
+ - ineffassign
14
+ - typecheck
15
+ - unconvert
16
+ - varcheck
17
+
18
+ issues :
19
+ exclude-use-default : false
20
+ exclude-rules :
21
+ - path : cmd/patch2pr/
22
+ text : " should have( a package)? comment"
23
+
24
+ linter-settings :
25
+ goimports :
26
+ local-prefixes : github.com/bluekeyes/patch2pr
You can’t perform that action at this time.
0 commit comments