Skip to content

Commit 1464c43

Browse files
committed
Apply rubocop lint fixes
1 parent 3ac9a7d commit 1464c43

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/conformance.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -45,28 +45,27 @@ jobs:
4545
ruby-version: ${{ matrix.ruby }}
4646
bundler-cache: true
4747
- 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
4949
with:
5050
functionType: 'http'
5151
useBuildpacks: false
5252
cmd: "'bundle exec functions-framework-ruby --source test/conformance/app.rb --target http_func --signature-type http'"
5353
- 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
5555
with:
5656
functionType: 'http'
5757
declarativeType: 'typed'
5858
useBuildpacks: false
59-
validateConcurrency: true
6059
cmd: "'bundle exec functions-framework-ruby --source test/conformance/app.rb --target typed_func --signature-type http'"
6160
- 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
6362
with:
6463
functionType: 'cloudevent'
6564
useBuildpacks: false
6665
validateMapping: true
6766
cmd: "'bundle exec functions-framework-ruby --source test/conformance/app.rb --target cloudevent_func --signature-type cloudevent'"
6867
- 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
7069
with:
7170
functionType: 'http'
7271
useBuildpacks: false

test/conformance/app.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929

3030
FunctionsFramework.typed "typed_func" do |request|
3131
return {
32-
:payload => request,
32+
payload: request
3333
}
3434
end

0 commit comments

Comments
 (0)