File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 34
34
run : composer install --prefer-source --optimize-autoloader --ansi --no-interaction --no-dev
35
35
- name : Install Box
36
36
run : composer global require 'kherge/box=~2.7' --prefer-source
37
- - name : Build pickle.phar
38
- run : ~/.composer/vendor/bin/box build
37
+ - name : Build pickle.phar on Ubuntu
38
+ if : startsWith(matrix.os, 'ubuntu')
39
+ run : |
40
+ "$(composer global config bin-dir --absolute)/box" build
41
+ - name : Build pickle.phar on Windows
42
+ if : startsWith(matrix.os, 'windows')
43
+ run : |
44
+ & "$(composer global config bin-dir --absolute)/box.bat" build
39
45
- name : Install Composer dependencies (including dev, preferring dist)
40
46
run : composer install --optimize-autoloader --ansi --no-interaction
41
47
- name : Run Behat
You can’t perform that action at this time.
0 commit comments