-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (46 loc) · 1.21 KB
/
phpunit.yml
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
47
48
49
50
51
52
53
54
55
name: CI-Unit
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
services:
mysql:
image: mysql:5.7
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
ports:
- "3306:3306"
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: nested_set
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
coverage: "pcov"
ini-values: "zend.assertions=1"
extensions: mysqli, pdo_mysql
- name: "Update deps for newer php versions"
run: |
composer config platform.php 8.0
composer update --no-interaction --no-progress --no-suggest --prefer-dist
if: "${{ matrix.php-version == '8.0' }}"
- name: Prepare project
run: |
composer install
- name: Check
run: |
DB_HOST=127.0.0.1 bin/phpunit