Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: introduce strongly typed function signature #525

Merged
merged 1 commit into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
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: 12 additions & 2 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
- name: Install conformance client
uses: GoogleCloudPlatform/functions-framework-conformance/.github/actions/client/install@5f2a796b58f099d749e70ecc83f531f6701c64af # v1.8.3
with:
client-version: v1.7.0
client-version: v1.8.3
cache-path: ~/client
cache-key: conformance-client-v1.7.0
cache-key: conformance-client-v1.8.3

- name: Run HTTP conformance tests using legacy API
working-directory: 'test/conformance'
Expand Down Expand Up @@ -82,6 +82,16 @@ jobs:
-validate-mapping=false \
-cmd="npm start -- --target=writeHttpDeclarative"

- name: Run Typed conformance tests using declarative API
working-directory: 'test/conformance'
run: |
~/client \
-type=http \
-declarative-type=typed \
-buildpacks=false \
-validate-mapping=false \
-cmd="npm start -- --target=writeTypedDeclarative"

- name: Run cloudevent conformance tests using declarative API
working-directory: 'test/conformance'
run: |
Expand Down
Loading