File tree 1 file changed +21
-2
lines changed
1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,25 @@ name: PHP Tests
2
2
3
3
on :
4
4
pull_request :
5
+ workflow_dispatch :
6
+ inputs :
7
+ lando-version :
8
+ description : ' Select Lando version'
9
+ required : true
10
+ default : ' 3-edge'
11
+ type : choice
12
+ options :
13
+ - ' 3-stable'
14
+ - ' 3-edge'
15
+ - ' 3-dev'
16
+ - ' 4-stable'
17
+ - ' 4-edge'
18
+ - ' 4-dev'
19
+ slim :
20
+ description : ' Use slim version'
21
+ required : false
22
+ default : true
23
+ type : boolean
5
24
6
25
jobs :
7
26
leia-tests :
@@ -50,10 +69,10 @@ jobs:
50
69
lando-plugin : true
51
70
version : dev
52
71
sync : false
53
- - name : Setup lando ${{ matrix. lando-version }}
72
+ - name : Setup lando ${{ github.event.inputs. lando-version }}${{ github.event.inputs.slim && '-slim' || '' }}
54
73
uses : lando/setup-lando@v3
55
74
with :
56
- lando-version : ${{ matrix. lando-version }}
75
+ lando-version : ${{ github.event.inputs. lando-version }}${{ github.event.inputs.slim && '-slim' || '' }}
57
76
config : |
58
77
setup.skipCommonPlugins=true
59
78
setup.plugins.@lando/php=/home/runner/work/php/php
You can’t perform that action at this time.
0 commit comments