File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed
Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 44 build :
55 runs-on : ubuntu-latest
66 steps :
7- - uses : actions/checkout@v4
7+ - name : Checkout code
8+ uses : actions/checkout@v4
89 with :
910 fetch-depth : 2
10- - uses : actions/setup-go@v5
11+ - name : Install Go
12+ uses : actions/setup-go@v5
1113 with :
1214 go-version : ' 1.24'
1315 cache : true
Original file line number Diff line number Diff line change 1212 name : lint
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v4
16- - uses : actions/setup-go@v5
15+ - name : Checkout code
16+ uses : actions/checkout@v4
17+ - name : Install Go
18+ uses : actions/setup-go@v5
1719 with :
1820 go-version : ${{ matrix.go-version }}
1921 cache : true
Original file line number Diff line number Diff line change @@ -11,12 +11,13 @@ jobs:
1111 name : test
1212 runs-on : ubuntu-latest
1313 steps :
14- - name : checkout
14+ - name : Checkout code
1515 uses : actions/checkout@v4
16- - uses : actions/setup-go@v5
16+ - name : Install Go
17+ uses : actions/setup-go@v5
1718 with :
1819 go-version : ${{ matrix.go-version }}
19- - name : Print go version
20+ - name : Print Go version
2021 run : go version
2122 - name : Run tests
2223 run : go test -json ./... > test.json
You can’t perform that action at this time.
0 commit comments