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 66b6605 commit dbf9290Copy full SHA for dbf9290
.circleci/config.yml
@@ -1,8 +1,8 @@
1
version: 2.1
2
3
orbs:
4
- golang: cci-orb/golang@volatile
5
- codecov: codecov/codecov@volatile
+ golang: cci-orb/golang@volatile # https://circleci.com/orbs/registry/orb/cci-orb/golang
+ codecov: codecov/codecov@volatile # https://circleci.com/orbs/registry/orb/codecov/codecov
6
7
jobs:
8
test:
@@ -16,6 +16,12 @@ jobs:
16
steps:
17
- checkout
18
- golang/gomod
19
+ - run:
20
+ name: Check versions
21
+ command: |
22
+ cat /etc/os-release
23
+ go version
24
+ go env
25
- run:
26
name: Test and collect coverages
27
command: |
@@ -41,6 +47,12 @@ jobs:
41
47
42
48
43
49
50
51
52
53
54
55
44
56
45
57
name: Run lint for sources
46
58
0 commit comments