forked from dalenys-deprecated/php-merchant-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
46 lines (40 loc) · 757 Bytes
/
.gitlab-ci.yml
File metadata and controls
46 lines (40 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#Help here: https://phpunit.de/supported-versions.html
before_script:
- cp tests/ftests/config.php.dist tests/ftests/config.php
- curl -L -o phpunit https://phar.phpunit.de/phpunit-7.phar
- chmod +x phpunit
php7.1:
image: php:7.1
script:
- ls
- php --version
- ./phpunit --version
- ./phpunit
php7.2:
image: php:7.2
script:
- ls
- php --version
- ./phpunit --version
- ./phpunit
php7.3:
image: php:7.3
script:
- ls
- php --version
- ./phpunit --version
- ./phpunit
php-7.4:
image: php:7.4
script:
- ls
- php --version
- ./phpunit --version
- ./phpunit
php-latest:
image: php:latest
script:
- ls
- php --version
- ./phpunit --version
- ./phpunit