We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf5cce9 commit b2dbd82Copy full SHA for b2dbd82
.github/workflows/all.yml
@@ -17,12 +17,16 @@ jobs:
17
- 1.19
18
19
steps:
20
- - uses: actions/checkout@v4
+ - name: Check out repository
21
+ uses: actions/checkout@v4
22
- - uses: actions/setup-go@v5
23
+ - name: Fetch Go ${{ matrix.go_version }}
24
+ uses: actions/setup-go@v5
25
with:
26
go-version: ${{ matrix.go_version }}
27
- - run: python3 ./evergreen/go_lint.py
28
+ - name: Lint
29
+ run: python3 ./evergreen/go_lint.py
30
- - run: go build main/migration_verifier.go
31
+ - name: Build
32
+ run: go build main/migration_verifier.go
0 commit comments