Skip to content
This repository was archived by the owner on Jan 1, 2024. It is now read-only.

Commit 312da04

Browse files
authored
Run all tests in CI on any push (#413)
1 parent 431ce0e commit 312da04

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/helpers/count_molecule_matrix.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,15 @@ def main(event_name, repo_owner, review_state, ref):
123123
ee_matrix = []
124124
tdg_matrix = []
125125

126-
if event_name == 'push' or event_name == 'pull_request' and repo_owner != 'tarantool':
126+
if any([
127+
event_name == 'push',
128+
event_name == 'pull_request' and repo_owner != 'tarantool',
129+
event_name == 'workflow_dispatch',
130+
# review_state == 'approved',
131+
# ref == 'refs/heads/master',
132+
]):
127133
ce_matrix.append(get_ce_params())
128134

129-
if event_name == 'workflow_dispatch' or review_state == 'approved' or ref == 'refs/heads/master':
130135
ee_matrix.append(get_ee_params())
131136

132137
all_scenarios = sorted(os.listdir(MOLECULE_SCENARIOS_PATH))

0 commit comments

Comments
 (0)