File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ jobs:
17
17
18
18
steps :
19
19
- name : Install Go
20
- uses : actions/setup-go@v1
20
+ uses : actions/setup-go@v3
21
21
with :
22
22
go-version : 1.20.x
23
23
24
24
- name : Checkout code
25
- uses : actions/checkout@v2
25
+ uses : actions/checkout@v3
26
26
27
27
- name : Install build dependencies
28
28
run : sudo apt-get install gettext
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ jobs:
14
14
runs-on : ${{ matrix.platform }}
15
15
steps :
16
16
- name : Install Go
17
- uses : actions/setup-go@v1
17
+ uses : actions/setup-go@v3
18
18
with :
19
19
go-version : ${{ matrix.go-version }}
20
20
21
21
- name : Checkout code
22
- uses : actions/checkout@v2
22
+ uses : actions/checkout@v3
23
23
24
24
- name : Configure known hosts
25
25
if : matrix.platform != 'ubuntu-latest'
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ build-git:
27
27
28
28
test :
29
29
@echo " running against ` git version` " ; \
30
- $(GOTEST ) ./...
30
+ $(GOTEST ) -race ./...
31
31
32
32
test-coverage :
33
33
@echo " running against ` git version` " ; \
Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ func (s *RepositorySuite) TestPullAdd(c *C) {
259
259
ExecuteOnPath (c , path ,
260
260
"touch foo" ,
261
261
"git add foo" ,
262
- "git commit -m foo foo" ,
262
+ "git commit --no-gpg-sign - m foo foo" ,
263
263
)
264
264
265
265
w , err := r .Worktree ()
You can’t perform that action at this time.
0 commit comments