-
Notifications
You must be signed in to change notification settings - Fork 91
167 lines (149 loc) · 5.41 KB
/
php.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
163
164
165
166
167
name: PHP QA
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
php:
runs-on: ubuntu-latest
continue-on-error: false
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2']
project: [
'Aws',
'Context/Swoole',
'Instrumentation/ExtAmqp',
'Instrumentation/Guzzle',
'Instrumentation/HttpAsyncClient',
'Instrumentation/Slim',
'Instrumentation/Psr3',
'Instrumentation/Psr14',
'Instrumentation/Psr15',
'Instrumentation/Psr18',
'Instrumentation/IO',
'Instrumentation/PDO',
'Instrumentation/Symfony',
'Instrumentation/OpenAIPHP',
'Instrumentation/Laravel',
'Instrumentation/MongoDB',
'Instrumentation/CodeIgniter',
'Instrumentation/Yii',
'Logs/Monolog',
'Propagation/ServerTiming',
'Propagation/TraceResponse',
'ResourceDetectors/Container',
'Shims/OpenTracing',
'Symfony'
]
exclude:
- project: 'Instrumentation/Guzzle'
php-version: 7.4
- project: 'Instrumentation/HttpAsyncClient'
php-version: 7.4
- project: 'Instrumentation/Slim'
php-version: 7.4
- project: 'Instrumentation/Psr3'
php-version: 7.4
- project: 'Instrumentation/Psr14'
php-version: 7.4
- project: 'Instrumentation/Psr15'
php-version: 7.4
- project: 'Instrumentation/Psr18'
php-version: 7.4
- project: 'Instrumentation/IO'
php-version: 7.4
- project: 'Instrumentation/Symfony'
php-version: 7.4
- project: 'Instrumentation/Laravel'
php-version: 7.4
- project: 'Instrumentation/CodeIgniter'
php-version: 7.4
- project: 'Instrumentation/Yii'
php-version: 7.4
- project: 'Instrumentation/IO'
php-version: 8.0
- project: 'Instrumentation/IO'
php-version: 8.1
- project: 'Instrumentation/PDO'
php-version: 7.4
- project: 'Instrumentation/PDO'
php-version: 8.0
- project: 'Instrumentation/PDO'
php-version: 8.1
- project: 'Instrumentation/ExtAmqp'
php-version: 7.4
- project: 'Instrumentation/ExtAmqp'
php-version: 8.0
- project: 'Instrumentation/ExtAmqp'
php-version: 8.1
- project: 'Instrumentation/OpenAIPHP'
php-version: 7.4
- project: 'Instrumentation/OpenAIPHP'
php-version: 8.0
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: xdebug
extensions: ast, amqp, grpc, opentelemetry
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: src/${{ matrix.project }}/vendor
key: ${{ runner.os }}-${{ matrix.php-version }}-php-${{ hashFiles('**/composer.json') }}
restore-keys: |
${{ runner.os }}-${{ matrix.php-version }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
working-directory: src/${{ matrix.project }}
run: |
composer config --no-plugins allow-plugins.php-http/discovery false
composer install --prefer-dist --no-progress
- name: Validate Packages composer.json
working-directory: src/${{ matrix.project }}
run: composer validate
- name: Check Style
working-directory: src/${{ matrix.project }}
continue-on-error: ${{ matrix.php-version == 8.2 }} #temporary, until php-cs-fixer is happy with php8.2
run: vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php -v --dry-run --stop-on-violation --using-cache=no -vvv
- name: Run Phan
working-directory: src/${{ matrix.project }}
env:
PHAN_DISABLE_XDEBUG_WARN: 1
run: vendor/bin/phan
- name: Run Psalm
working-directory: src/${{ matrix.project }}
run: vendor/bin/psalm --output-format=github --php-version=${{ matrix.php-version }}
- name: Run Phpstan
working-directory: src/${{ matrix.project }}
run: vendor/bin/phpstan analyse --error-format=github
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.8.0
if: ${{ matrix.project == 'Instrumentation/MongoDB' }}
with:
mongodb-version: 6.0
mongodb-replica-set: otel-php
- name: Start RabbitMQ
if: ${{ matrix.project == 'Instrumentation/ExtAmqp' }}
run: |
docker compose up rabbitmq -d --wait
- name: Run PHPUnit
working-directory: src/${{ matrix.project }}
run: vendor/bin/phpunit
- name: Run PHPUnit (coverage)
working-directory: src/${{ matrix.project }}
run: vendor/bin/phpunit --testsuite integration,unit --coverage-text --coverage-clover=coverage.clover
- name: Code Coverage
working-directory: src/${{ matrix.project }}
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.php-version }}