-
Notifications
You must be signed in to change notification settings - Fork 1
162 lines (139 loc) Β· 5.32 KB
/
ci.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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
name: CI
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["7.4", "8.0", "8.1"]
name: Unit tests ${{ matrix.php-versions }}
services:
mysql:
image: bitnami/mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_PASSWORD: vagrant
MYSQL_ROOT_PASSWORD: vagrant
MYSQL_USER: vagrant
MYSQL_DATABASE: udb3_test
MYSQL_AUTHENTICATION_PLUGIN: mysql_native_password
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: π€ Checkout project
uses: actions/checkout@v4
- name: π Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
ini-values: xdebug.mode=coverage
extensions: bcmath, tidy
tools: composer
- name: βοΈ Check PHP Version
run: php -v
- name: π Validate composer.json and composer.lock
run: composer validate
- name: π© Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}-v1
restore-keys: |
${{ runner.os }}-php-
- name: π¦ Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --no-progress --no-suggest
- name: β
Run tests
run: composer test
env:
DATABASE_PORT: ${{ job.services.mysql.ports['3306'] }}
cs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["7.4", "8.0", "8.1"]
name: Code style ${{ matrix.php-versions }}
steps:
- name: π€ Checkout project
uses: actions/checkout@v4
- name: π Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: tidy, zip
tools: composer
- name: π© Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: π¦ Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --no-progress --no-suggest
- name: β¨ Run code style check
run: composer cs
phpstan:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["7.4", "8.0", "8.1"]
name: Static analysis ${{ matrix.php-versions }}
steps:
- name: π€ Checkout project
uses: actions/checkout@v4
- name: π Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: tidy, zip
tools: composer
- name: π© Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: π¦ Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --no-progress --no-suggest
- name: π Run static analysis
run: composer phpstan
unused:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["7.4", "8.0", "8.1"]
name: Unused composer dependencies ${{ matrix.php-versions }}
steps:
- name: π€ Checkout project
uses: actions/checkout@v4
- name: π Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: tidy, zip
tools: composer
- name: π© Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: π¦ Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --no-progress --no-suggest
- name: π Run unused dependencies check
run: composer unused