Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ jobs:
uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15'
uses: actions/setup-go@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand All @@ -30,7 +28,7 @@ jobs:
run: npm install

- name: Run HTTP conformance tests using legacy API
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.2.0
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.4.1
with:
functionType: 'http'
useBuildpacks: false
Expand All @@ -39,7 +37,7 @@ jobs:
cmd: "'npm start -- --target=writeHttp --signature-type=http'"

- name: Run event conformance tests using legacy API
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.2.0
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.4.1
with:
functionType: 'legacyevent'
useBuildpacks: false
Expand All @@ -48,7 +46,7 @@ jobs:
cmd: "'npm start -- --target=writeLegacyEvent --signature-type=event'"

- name: Run cloudevent conformance tests using legacy API
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.2.0
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.4.1
with:
functionType: 'cloudevent'
useBuildpacks: false
Expand All @@ -57,7 +55,7 @@ jobs:
cmd: "'npm start -- --target=writeCloudEvent --signature-type=cloudevent'"

- name: Run HTTP conformance tests using declarative API
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.2.0
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.4.1
with:
functionType: 'http'
useBuildpacks: false
Expand All @@ -66,7 +64,7 @@ jobs:
cmd: "'npm start -- --target=writeHttpDeclarative'"

- name: Run cloudevent conformance tests using declarative API
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.2.0
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.4.1
with:
functionType: 'cloudevent'
useBuildpacks: false
Expand Down