-
-
Notifications
You must be signed in to change notification settings - Fork 2
85 lines (65 loc) · 2.14 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
name: CI
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php: [ '8.2', '8.3', '8.4' ]
symfony: [ '6.*', '7.*' ]
dep: [highest,lowest]
name: Symfony ${{ matrix.symfony }}, ${{ matrix.dep }} deps, PHP ${{ matrix.php }}, ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: intl
tools: flex, phive
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: phive
run: phive install --trust-gpg-keys E82B2FB314E9906E
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dep }}
composer-options: --prefer-dist --no-progress --no-scripts --ignore-platform-reqs
env:
SYMFONY_REQUIRE: ${{ matrix.symfony }}
- name: Run psalm
run: vendor/bin/psalm
if: matrix.dep == 'highest' && matrix.symfony == '7.*'
- name: Run phpstan
run: vendor/bin/phpstan analyse
if: matrix.dep == 'highest' && matrix.symfony == '7.*'
# - name: Lint container
# run: tests/bin/console lint:container
- name: Validate monorepo
run: vendor/bin/monorepo-builder validate
# - name: Rector
# run: vendor/bin/rector process --no-progress-bar --no-diffs --dry-run --no-ansi
- name: Validate php-cs-fixer
run: |
PHP_CS_FIXER_IGNORE_ENV=1 tools/php-cs-fixer check --allow-risky=yes -q
if: matrix.php != '8.4'
- name: Load fixtures
run: make fixtures
- name: Run phpunit
run: |
export SYMFONY_DEPRECATIONS_HELPER='max[direct]=0'
vendor/bin/phpunit