We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b8b89 commit f06a093Copy full SHA for f06a093
.github/workflows/integration.yaml
@@ -50,6 +50,13 @@ on:
50
required: false
51
default: ""
52
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
60
61
jobs:
62
sdk-test-suite:
@@ -127,6 +134,7 @@ jobs:
127
134
run: docker pull ${{ inputs.serviceImage }}
128
135
129
136
- name: Run test tool
137
+ continue-on-error: ${{ inputs.continueOnError }}
130
138
uses: restatedev/[email protected]
131
139
with:
132
140
envVars: ${{ inputs.envVars }}
0 commit comments