We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cc5758 commit 6a0c99fCopy full SHA for 6a0c99f
1 file changed
.github/workflows/pre_production_tests.yml
@@ -12,6 +12,11 @@ on:
12
description: "The maximum number of SQL test cases to run"
13
required: false
14
default: 500
15
+ seed:
16
+ type: string
17
+ description: "Random seed for reproducible sampling (float in [-1.0, 1.0]). Leave blank to auto-generate."
18
+ required: false
19
+ default: ''
20
21
jobs:
22
run-pre-production-tests:
@@ -20,6 +25,7 @@ jobs:
25
with:
26
eval_function: ${{ inputs.eval_function }}
27
sql_limit: ${{ inputs.sql_limit }}
28
+ seed: ${{ inputs.seed }}
23
29
secrets:
24
30
TEST_API_ENDPOINT: ${{ secrets.TEST_API_ENDPOINT }}
31
DB_USER: ${{ secrets.DB_USER }}
0 commit comments