File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 66 schedule :
77 - cron : " 00 16 * * 1-5"
88 workflow_dispatch : # allows triggering this manually through the Actions UI
9+ inputs :
10+ run_test_vectors :
11+ description : ' Run Test Vectors?'
12+ required : false
13+ default : true
14+ type : boolean
915 # TODO: Remove this before merging to main. We don't want this workflow running in CI
1016 # on PRs because we expect it to fail when the MPL is actually updated since the last version.
1117 pull_request :
@@ -103,6 +109,8 @@ jobs:
103109 make mvn_local_deploy
104110
105111 - name : Run Test Vectors
112+ # TODO: Remove pull_request from here
113+ if : github.event_name == 'pull_request' || github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && ${{inputs.run_test_vectors}})
106114 working-directory : ./TestVectors
107115 run : |
108116 # Spin up ddb local
You can’t perform that action at this time.
0 commit comments