Launchable: Fix condition for bootstraptest

This commit is contained in:
Naoto Ono 2024-08-08 21:13:36 +09:00 committed by Koichi Sasada
parent d012f6d49f
commit 00e2e24e6f
Notes: git 2024-08-13 01:28:32 +00:00

View file

@ -63,7 +63,9 @@ runs:
${{
(github.repository == 'ruby/ruby' ||
(github.repository != 'ruby/ruby' && env.LAUNCHABLE_TOKEN)) &&
(inputs.test-task == 'check' || inputs.test-task == 'test-all')
(inputs.test-task == 'check' ||
inputs.test-task == 'test-all' ||
inputs.test-task == 'test')
}}
# Launchable CLI requires Python and Java.