-
Notifications
You must be signed in to change notification settings - Fork 27
66 lines (54 loc) · 1.96 KB
/
test-application.yaml
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
56
57
58
59
60
61
62
63
64
65
66
name: Test application
on:
pull_request:
push:
branches:
- '[0-9]+.[0-9]+'
- '[0-9]+.x'
jobs:
test:
name: "PHP ${{ matrix.php-version }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- php-version: '5.5'
php-extensions: 'ctype, iconv, mysql, gd'
tools: 'composer:v1'
- php-version: '7.4'
php-extensions: 'ctype, iconv, mysql, imagick'
tools: 'composer:v2'
services:
mysql:
image: mysql:5.5
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Install and configure PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: ${{ matrix.php-extensions }}
tools: ${{ matrix.tools }}
coverage: none
- name: Install composer dependencies
uses: ramsey/composer-install@v1
- name: Create database
run: |
bin/adminconsole doctrine:database:create
bin/adminconsole doctrine:database:create --env test
- name: Build sulu
run: bin/adminconsole sulu:build dev --no-interaction
- name: Lint code
run: |
composer validate
bin/adminconsole lint:twig app/Resources/views
bin/adminconsole lint:yaml app/config
- name: Execute test cases
run: bin/simple-phpunit