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 9c01b60 commit 88f68fcCopy full SHA for 88f68fc
.circleci/config.yml
@@ -11,6 +11,7 @@ workflows:
11
test-build-deploy:
12
jobs:
13
- lint
14
+ - check-protos
15
- test
16
17
@@ -23,6 +24,19 @@ jobs:
23
24
command: |
25
make lint
26
27
+ check-protos:
28
+ machine: # executor type
29
+ image: ubuntu-2204:2022.10.2
30
+ working_directory: /home/circleci/go/src/github.com/weaveworks/common
31
+ steps:
32
+ - checkout
33
+ - run:
34
+ name: Check generated protobuf files
35
+ command: |
36
+ go version
37
+ go mod vendor
38
+ make check-protos
39
+
40
test:
41
<<: *defaults
42
steps:
0 commit comments