Skip to content

Commit dbf9290

Browse files
committed
ci/circleci: add check versions step
1 parent 66b6605 commit dbf9290

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.circleci/config.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2.1
22

33
orbs:
4-
golang: cci-orb/golang@volatile
5-
codecov: codecov/codecov@volatile
4+
golang: cci-orb/golang@volatile # https://circleci.com/orbs/registry/orb/cci-orb/golang
5+
codecov: codecov/codecov@volatile # https://circleci.com/orbs/registry/orb/codecov/codecov
66

77
jobs:
88
test:
@@ -16,6 +16,12 @@ jobs:
1616
steps:
1717
- checkout
1818
- golang/gomod
19+
- run:
20+
name: Check versions
21+
command: |
22+
cat /etc/os-release
23+
go version
24+
go env
1925
- run:
2026
name: Test and collect coverages
2127
command: |
@@ -41,6 +47,12 @@ jobs:
4147
steps:
4248
- checkout
4349
- golang/gomod
50+
- run:
51+
name: Check versions
52+
command: |
53+
cat /etc/os-release
54+
go version
55+
go env
4456
- run:
4557
name: Run lint for sources
4658
command: |

0 commit comments

Comments
 (0)