Skip to content

Commit c04fa3f

Browse files
committed
add flag to run / not run tvs
1 parent bac6026 commit c04fa3f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci_test_latest_released_mpl_java.yml

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ on:
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

0 commit comments

Comments
 (0)