Skip to content

Commit b2dbd82

Browse files
committed
names
1 parent cf5cce9 commit b2dbd82

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/all.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,16 @@ jobs:
1717
- 1.19
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- name: Check out repository
21+
uses: actions/checkout@v4
2122

22-
- uses: actions/setup-go@v5
23+
- name: Fetch Go ${{ matrix.go_version }}
24+
uses: actions/setup-go@v5
2325
with:
2426
go-version: ${{ matrix.go_version }}
2527

26-
- run: python3 ./evergreen/go_lint.py
28+
- name: Lint
29+
run: python3 ./evergreen/go_lint.py
2730

28-
- run: go build main/migration_verifier.go
31+
- name: Build
32+
run: go build main/migration_verifier.go

0 commit comments

Comments
 (0)