File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 6
6
schedule :
7
7
- cron : " 00 16 * * 1-5"
8
8
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
9
15
# TODO: Remove this before merging to main. We don't want this workflow running in CI
10
16
# on PRs because we expect it to fail when the MPL is actually updated since the last version.
11
17
pull_request :
@@ -103,6 +109,8 @@ jobs:
103
109
make mvn_local_deploy
104
110
105
111
- 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}})
106
114
working-directory : ./TestVectors
107
115
run : |
108
116
# Spin up ddb local
You can’t perform that action at this time.
0 commit comments