File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ workflow "Test exitcode for Composer commands" {
2
+ on = " push"
3
+ resolves = [
4
+ " Test composer require"
5
+ ]
6
+ }
7
+
8
+ action "Test composer require" {
9
+ uses = " ./"
10
+ args = " require phpgt/webengine"
11
+ }
Original file line number Diff line number Diff line change
1
+ # Use the Composer CLI in your Github Actions.
Original file line number Diff line number Diff line change
1
+ name : ' Composer (php-actions)'
2
+ description : ' Use the Composer CLI in your Github Actions.'
3
+ inputs :
4
+ command :
5
+ description : ' Composer command to run'
6
+ required : true
7
+ default : ' install'
8
+ outputs :
9
+ time :
10
+ description : ' The time the action was run'
11
+ runs :
12
+ using : ' docker'
13
+ image : ' Dockerfile'
14
+ args :
15
+ - ${{ inputs.command }}
16
+ branding :
17
+ icon : ' package'
18
+ color : ' purple'
You can’t perform that action at this time.
0 commit comments