You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Validates composer.json and runs the CI pipelines to verify the project is working correctly. The workflow supports building a matrix of php versions and stabilities. By default prefer-lowest and prefer-stable are tested with all given php versions which should cover most of the package ranges.
9
+
10
+
#### Inputs
11
+
php-versions:
12
+
description: 'The php versions to test as JSON array. Will be converted and used to create a matrix.'
13
+
default: '["8.1"]'
14
+
required: true
15
+
type: string
16
+
prefer-stability:
17
+
description: 'The staibility of the packages to use. Will be converted and used to create a matrix.'
18
+
default: '["prefer-lowest", "prefer-stable"]'
19
+
type: string
20
+
test-command:
21
+
description: 'The command to run for executing tests'
0 commit comments