File tree Expand file tree Collapse file tree 2 files changed +34
-8
lines changed Expand file tree Collapse file tree 2 files changed +34
-8
lines changed Original file line number Diff line number Diff line change 1+ name : Go
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+
11+ build :
12+ name : API Diff Check
13+ runs-on : ubuntu-latest
14+ steps :
15+
16+ - name : Set up Go 1.x
17+ uses : actions/setup-go@v2
18+ with :
19+ go-version : ^1.14
20+ id : go
21+
22+ - name : Check out code into the Go module directory
23+ uses : actions/checkout@v2
24+
25+ - name : Get dependencies
26+ run : |
27+ go install golang.org/x/exp/cmd/gorelease
28+
29+ - name : Check APIs
30+ run : $(go env GOPATH)/bin/gorelease
Original file line number Diff line number Diff line change 11language : go
2-
3- sudo : required
2+ sudo : true
3+ dist : bionic
44
55os :
66 - linux
7- - osx
87go :
9- - 1.11 .x
10- - 1.12 .x
8+ - 1.13 .x
9+ - 1.14 .x
1110 - tip
1211
1312matrix :
@@ -17,6 +16,3 @@ matrix:
1716script :
1817 make ci-test;
1918
20- branches :
21- only :
22- - master
You can’t perform that action at this time.
0 commit comments