File tree 2 files changed +7
-16
lines changed
2 files changed +7
-16
lines changed Original file line number Diff line number Diff line change @@ -10,25 +10,16 @@ jobs:
10
10
- name : Setup Go
11
11
uses : actions/setup-go@v3
12
12
with :
13
- go-version : ' 1.19.0 '
13
+ go-version : ' stable '
14
14
15
- - uses : actions/checkout@v3
16
- with :
17
- path : src/git-bundle-server
15
+ - name : Clone repository
16
+ uses : actions/checkout@v3
18
17
19
- # TODO: when the '-C' option is available, remove the 'cd ...'
20
- # See https://github.com/golang/go/issues/50332 for more details
21
18
- name : Build
22
- run : |
23
- cd $GITHUB_WORKSPACE/src/git-bundle-server
24
- go build -v ./...
19
+ run : go build -v ./...
25
20
26
21
- name : Check style
27
- run : |
28
- cd $GITHUB_WORKSPACE/src/git-bundle-server
29
- go vet ./...
22
+ run : go vet ./...
30
23
31
24
- name : Run unit tests
32
- run : |
33
- cd $GITHUB_WORKSPACE/src/git-bundle-server
34
- go test -v ./...
25
+ run : go test -v ./...
Original file line number Diff line number Diff line change 46
46
- name : Setup Go
47
47
uses : actions/setup-go@v3
48
48
with :
49
- go-version : ' 1.19.0 '
49
+ go-version : ' stable '
50
50
- uses : ruby/setup-ruby@v1
51
51
with :
52
52
ruby-version : ' 3.2.1'
You can’t perform that action at this time.
0 commit comments