Skip to content

Commit 1cd4a6f

Browse files
committed
show Go version in CI steps
1 parent 57ab388 commit 1cd4a6f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
- image: cimg/go:1.18
99
steps:
1010
- checkout
11+
- run: go version
1112
- run: go test ./...
1213
test-windows:
1314
executor:
@@ -16,7 +17,8 @@ jobs:
1617
- checkout
1718
- attach_workspace:
1819
at: build
19-
- run: go test
20+
- run: go version
21+
- run: go test ./...
2022

2123
workflows:
2224
version: 2

0 commit comments

Comments
 (0)