File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -45,28 +45,27 @@ jobs:
45
45
ruby-version : ${{ matrix.ruby }}
46
46
bundler-cache : true
47
47
- name : Run HTTP conformance tests
48
- uses : GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
48
+ uses : GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.3
49
49
with :
50
50
functionType : ' http'
51
51
useBuildpacks : false
52
52
cmd : " 'bundle exec functions-framework-ruby --source test/conformance/app.rb --target http_func --signature-type http'"
53
53
- name : Run Typed conformance tests
54
- uses : GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
54
+ uses : GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.3
55
55
with :
56
56
functionType : ' http'
57
57
declarativeType : ' typed'
58
58
useBuildpacks : false
59
- validateConcurrency : true
60
59
cmd : " 'bundle exec functions-framework-ruby --source test/conformance/app.rb --target typed_func --signature-type http'"
61
60
- name : Run CloudEvent conformance tests
62
- uses : GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
61
+ uses : GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.3
63
62
with :
64
63
functionType : ' cloudevent'
65
64
useBuildpacks : false
66
65
validateMapping : true
67
66
cmd : " 'bundle exec functions-framework-ruby --source test/conformance/app.rb --target cloudevent_func --signature-type cloudevent'"
68
67
- name : Run HTTP concurrency tests
69
- uses : GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.2
68
+ uses : GoogleCloudPlatform/functions-framework-conformance/action@2f5f319c06a3531be7f75dc5acf6bd00417ff76e # v1.8.3
70
69
with :
71
70
functionType : ' http'
72
71
useBuildpacks : false
Original file line number Diff line number Diff line change 29
29
30
30
FunctionsFramework . typed "typed_func" do |request |
31
31
return {
32
- : payload => request ,
32
+ payload : request
33
33
}
34
34
end
You can’t perform that action at this time.
0 commit comments