File tree Expand file tree Collapse file tree 1 file changed +9
-14
lines changed
Expand file tree Collapse file tree 1 file changed +9
-14
lines changed Original file line number Diff line number Diff line change @@ -5,25 +5,20 @@ name: Go
55
66on :
77 push :
8- branches : [ "master" ]
8+ branches : ["master"]
99 pull_request :
10- branches :
11- - ' *' # matches every branch that doesn't contain a '/'
12- - ' */*' # matches every branch containing a single '/'
13- - ' **' # matches every branch
14- - ' !master' # excludes master
10+ branches : ["master"]
1511
1612jobs :
17-
1813 build :
1914 runs-on : ubuntu-latest
2015 steps :
21- - uses : actions/checkout@v4
16+ - uses : actions/checkout@v4
2217
23- - name : Set up Go
24- uses : actions/setup-go@v4
25- with :
26- go-version : ' 1.23'
18+ - name : Set up Go
19+ uses : actions/setup-go@v4
20+ with :
21+ go-version : " 1.23"
2722
28- - name : Test
29- run : go test -v -cover ./...
23+ - name : Test
24+ run : go test -v -cover ./...
You can’t perform that action at this time.
0 commit comments