File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change 21
21
fail-fast : false
22
22
matrix :
23
23
include :
24
- - php : ' 7.2'
25
24
- php : ' 7.3'
26
25
- php : ' 7.4'
27
26
env :
58
57
- name : Execute tests
59
58
run : vendor/bin/simple-phpunit -v
60
59
60
+ legacyPHP :
61
+ name : PHP 7.2 Varnish 6
62
+ runs-on : ubuntu-18.04
63
+
64
+ steps :
65
+ - name : Setup PHP
66
+ uses : shivammathur/setup-php@v2
67
+ with :
68
+ php-version : 7.2
69
+ tools : composer:v2
70
+ coverage : none
71
+
72
+ - name : Checkout code
73
+ uses : actions/checkout@v2
74
+
75
+ - name : Setup Varnish and Nginx
76
+ run : |
77
+ sh ${GITHUB_WORKSPACE}/.github/workflows/setup-varnish.sh
78
+ sh ${GITHUB_WORKSPACE}/.github/workflows/setup-nginx.sh
79
+
80
+ - name : Install composer dependencies
81
+ run : |
82
+ composer require --no-update ${DEPENDENCIES}
83
+ composer update --prefer-dist --no-interaction --no-progress
84
+ vendor/bin/simple-phpunit install
85
+
86
+ - name : Execute tests
87
+ run : vendor/bin/simple-phpunit -v
88
+
61
89
varnish5 :
62
90
name : PHP ${{ matrix.php }} Legacy Varnish 5
63
91
runs-on : ubuntu-18.04
You can’t perform that action at this time.
0 commit comments