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 1f5b4f0 commit b55ff5dCopy full SHA for b55ff5d
.circleci/config.yml
@@ -50,17 +50,21 @@ jobs:
50
- checkout
51
- restore_cache:
52
keys:
53
- - terraform-aws-vpc-{{ checksum "Gemfile.lock" }}
+ - terraform-aws-lambda-{{ checksum "Gemfile.lock" }}
54
55
- run:
56
name: Bundle Install
57
command: bundle check || bundle install
58
59
- save_cache:
60
- key: terraform-aws-vpc-{{ checksum "Gemfile.lock" }}
+ key: terraform-aws-lambda-{{ checksum "Gemfile.lock" }}
61
paths:
62
- vendor/bundle
63
64
+ - run:
65
+ name: Run make to zip a function code
66
+ command: make build
67
+
68
69
name: Run kitchen test
70
command: bundle exec kitchen test
0 commit comments