Skip to content

Commit f06a093

Browse files
committed
Allow SDK integration workflow to continue on error
1 parent 56b8b89 commit f06a093

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/integration.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ on:
5050
required: false
5151
default: ""
5252
type: string
53+
# temporarily needed to allow running tests that we expect to fail because we cannot specify continue-on-error on
54+
# reusable workflows. See https://github.com/orgs/community/discussions/77915.
55+
continueOnError:
56+
description: "whether to continue on error"
57+
required: false
58+
default: false
59+
type: boolean
5360

5461
jobs:
5562
sdk-test-suite:
@@ -127,6 +134,7 @@ jobs:
127134
run: docker pull ${{ inputs.serviceImage }}
128135

129136
- name: Run test tool
137+
continue-on-error: ${{ inputs.continueOnError }}
130138
uses: restatedev/[email protected]
131139
with:
132140
envVars: ${{ inputs.envVars }}

0 commit comments

Comments
 (0)