-
Notifications
You must be signed in to change notification settings - Fork 328
55 lines (49 loc) · 1.58 KB
/
continuous-integration.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"
on:
push:
pull_request:
jobs:
phpunit:
name: "PHPUnit"
runs-on: "ubuntu-latest"
env:
SYMFONY_REQUIRE: "${{matrix.symfony-require}}"
SYMFONY_DEPRECATIONS_HELPER: "max[self]=0"
strategy:
fail-fast: false
matrix:
include:
- dependency-versions: "lowest"
php-version: "7.4"
php-extensions: "redis-5.3.0"
- symfony-require: "5.4.*"
php-version: "8.2"
php-extensions: "redis"
- symfony-require: "6.4.*"
php-version: "8.2"
php-extensions: "redis-phpredis/phpredis@develop"
- symfony-require: "7.0.*"
php-version: "8.3"
php-extensions: "redis"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
with:
fetch-depth: 2
- name: "Install requirements"
run: sudo apt-get update && sudo apt-get install --no-install-recommends redis-server ruby-foreman
- name: "Start background services"
run: sudo systemctl stop redis-server && foreman start &
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
extensions: "${{ matrix.php-extensions }},relay"
ini-values: "zend.assertions=1, max_execution_time=30"
tools: "flex"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
with:
dependency-versions: "${{ matrix.dependency-versions }}"
- name: "Run PHPUnit"
run: vendor/bin/phpunit