-
Notifications
You must be signed in to change notification settings - Fork 26
144 lines (116 loc) · 3.79 KB
/
Copy pathci.yaml
File metadata and controls
144 lines (116 loc) · 3.79 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
name: "CI"
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
schedule:
- cron: '0 0 * * 0'
env:
PHPUNIT_FLAGS: "-v"
SYMFONY_PHPUNIT_DIR: "$HOME/symfony-bridge/.phpunit"
jobs:
coding-standards:
name: "Coding Standards (${{ matrix.php-version }})"
runs-on: "ubuntu-18.04"
strategy:
fail-fast: false
matrix:
php-version:
- '7.4'
steps:
-
name: "Checkout code"
uses: "actions/checkout@v2"
-
name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
-
name: "Validate composer.json"
run: "composer validate --strict --no-check-lock"
-
name: "Composer install"
uses: "ramsey/composer-install@v1"
with:
composer-options: "--no-scripts"
-
name: "Composer install php-cs-fixer"
uses: "ramsey/composer-install@v1"
with:
composer-options: "--no-scripts --working-dir=tests/fixtures/php-cs-fixer"
-
name: "Run friendsofphp/php-cs-fixer"
run: "tests/fixtures/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff"
test:
name: "PHP ${{ matrix.php-version }} + @${{ matrix.symfony-version }} ${{ matrix.dependency-versions }} deps"
runs-on: ubuntu-18.04
services:
mysql:
image: mysql:5.7 # Update server_version in phpunit.xml.dist if this changes.
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: test_jsonapi
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
env:
SYMFONY_VERSION: ${{ matrix.symfony-version }}
MAKER_ALLOW_DEV_DEPS_IN_APP: ${{ matrix.allow-dev-deps-in-apps }}
strategy:
fail-fast: false
matrix:
php-version:
- '8.0'
symfony-version:
- '4.4.*'
- '5.4.x'
- '6.0.x'
- '6.3.x-dev'
dependency-versions: ['highest']
allow-dev-deps-in-apps: ['0']
include:
# testing lowest php version with highest 5.x stable
- php-version: '7.4'
symfony-version: '5.4.*'
dependency-versions: 'lowest'
steps:
- name: "Checkout code"
uses: actions/checkout@v2.3.3
- name: "Start MySQL"
run: |
sudo /etc/init.d/mysql start
- name: "Verify MySQL connection from host"
run: |
mysql --host 127.0.0.1 --port 3306 -uroot -proot -e "SHOW DATABASES;"
- name: "Setup Database"
run: |
mysql --host 127.0.0.1 --port 3306 -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test_jsonapi;"
- name: "Install PHP with extensions"
uses: shivammathur/setup-php@2.7.0
with:
coverage: "none"
php-version: ${{ matrix.php-version }}
tools: composer:v2
- name: "Add PHPUnit matcher"
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: "Require symfony/flex"
run: composer global require --no-progress --no-scripts --no-plugins symfony/flex
- name: "Composer install"
uses: "ramsey/composer-install@v1"
with:
dependency-versions: "${{ matrix.dependency-versions }}"
- name: "Composer install php-cs-fixer"
uses: "ramsey/composer-install@v1"
with:
composer-options: "--no-scripts --working-dir=tests/fixtures/php-cs-fixer"
- name: "Install PHPUnit"
run: vendor/bin/simple-phpunit install
- name: "PHPUnit version"
run: vendor/bin/simple-phpunit --version
- name: "Run tests"
run: vendor/bin/simple-phpunit ${{ env.PHPUNIT_FLAGS }}