@@ -66,19 +66,27 @@ jobs:
66
66
67
67
- name : Run tests with coverage
68
68
if : ${{ matrix.php == '8.1' && matrix.redis == '7' }}
69
- run : vendor/bin/phpunit --coverage-clover build/logs/clover.xml --coverage-filter ./src
69
+ run : vendor/bin/phpunit --coverage-php build/cov/coverage-predis.cov --coverage-filter ./src
70
70
71
71
- name : Run tests using Relay
72
- if : ${{ matrix.redis >= '6' }}
72
+ if : ${{ matrix.redis >= '6' && (matrix.php != '8.1' || matrix.redis != '7') }}
73
73
run : vendor/bin/phpunit -c phpunit.relay.xml
74
74
75
+ - name : Run tests using Relay with coverage
76
+ if : ${{ matrix.php == '8.1' && matrix.redis == '7' }}
77
+ run : vendor/bin/phpunit -c phpunit.relay.xml --coverage-php build/cov/coverage-relay.cov --coverage-filter ./src
78
+
79
+ - name : Merge coverage reports
80
+ if : ${{ matrix.php == '8.1' && matrix.redis == '7' }}
81
+ run : php vendor/bin/phpcov merge --clover build/logs/clover.xml build/cov
82
+
75
83
- name : Send coverage to Coveralls
76
- env :
77
- COVERALLS_REPO_TOKEN : ${{ secrets.GITHUB_TOKEN }}
78
- if : ${{ env.COVERALLS_REPO_TOKEN && matrix.php == '8.1' && matrix.redis == '7' }}
79
- run : |
80
- wget "https:// github.com/php-coveralls/php-coveralls/releases/download/v2.5.3/php-coveralls.phar"
81
- php ./php-coveralls.phar -v
84
+ uses : coverallsapp/github-action@v2
85
+ if : ${{ matrix.php == '8.1' && matrix.redis == '7' }}
86
+ with :
87
+ flag-name : Predis-Relay
88
+ github-token : ${{ secrets.GITHUB_TOKEN }}
89
+ parallel : true
82
90
83
91
predis-cluster :
84
92
@@ -122,3 +130,103 @@ jobs:
122
130
run : |
123
131
sleep 5 # Timeout to make sure that docker image is setup
124
132
vendor/bin/phpunit --group cluster,gears-cluster
133
+
134
+ predis-stack :
135
+
136
+ name : PHP ${{ matrix.php }} (Redis Stack ${{ matrix.redis }})
137
+ needs : predis
138
+ runs-on : ubuntu-latest
139
+
140
+ services :
141
+ redis :
142
+ image : redis/redis-stack-server:${{ matrix.redis }}
143
+ options : --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
144
+ ports :
145
+ - 6379:6379
146
+
147
+ strategy :
148
+ fail-fast : false
149
+ matrix :
150
+ php :
151
+ - ' 7.2'
152
+ - ' 7.3'
153
+ - ' 7.4'
154
+ - ' 8.0'
155
+ - ' 8.1'
156
+ - ' 8.2'
157
+ redis :
158
+ - edge
159
+
160
+ steps :
161
+ - name : Checkout
162
+ uses : actions/checkout@v3
163
+
164
+ - name : Setup PHP with Composer and extensions
165
+ uses : shivammathur/setup-php@v2
166
+ with :
167
+ php-version : ${{ matrix.php }}
168
+ extensions : relay
169
+
170
+ - name : Get Composer cache directory
171
+ id : composer-cache
172
+ run : echo "directory=$(composer config cache-dir)" >> $GITHUB_OUTPUT
173
+
174
+ - name : Cache Composer dependencies
175
+ uses : actions/cache@v3
176
+ with :
177
+ path : ${{ steps.composer-cache.outputs.directory }}
178
+ key : tests-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
179
+ restore-keys : tests-php-${{ matrix.php }}-composer
180
+
181
+ - name : Install Composer dependencies
182
+ env :
183
+ PHP_VERSION : ${{ matrix.php }}
184
+ run : composer install --ansi --no-progress --prefer-dist
185
+
186
+ - name : Run tests
187
+ if : ${{ matrix.php != '8.1' }}
188
+ run : vendor/bin/phpunit --group realm-stack
189
+
190
+ - name : Run tests with coverage
191
+ if : ${{ matrix.php == '8.1' }}
192
+ run : vendor/bin/phpunit --group realm-stack --coverage-php build/cov/coverage-stack.cov --coverage-filter ./src
193
+
194
+ - name : Run redis gears tests
195
+ if : ${{ matrix.php != '8.1' }}
196
+ run : vendor/bin/phpunit --group gears
197
+
198
+ - name : Run redis gears tests with coverage
199
+ if : ${{ matrix.php == '8.1' }}
200
+ run : vendor/bin/phpunit --group gears --coverage-php build/cov/coverage-gears.cov --coverage-filter ./src
201
+
202
+ - name : Run tests using Relay
203
+ if : ${{ matrix.php != '8.1' }}
204
+ run : vendor/bin/phpunit --group realm-stack -c phpunit.relay.xml
205
+
206
+ - name : Run tests using Relay with coverage
207
+ if : ${{ matrix.php == '8.1' }}
208
+ run : vendor/bin/phpunit --group realm-stack --coverage-php build/cov/coverage-relay-stack.cov --coverage-filter ./src -c phpunit.relay.xml
209
+
210
+ - name : Merge coverage reports
211
+ if : ${{ matrix.php == '8.1' }}
212
+ run : php vendor/bin/phpcov merge --clover build/logs/clover.xml build/cov
213
+
214
+ - name : Send coverage to Coveralls
215
+ uses : coverallsapp/github-action@v2
216
+ if : ${{ matrix.php == '8.1' }}
217
+ with :
218
+ flag-name : Stack
219
+ github-token : ${{ secrets.GITHUB_TOKEN }}
220
+ parallel : true
221
+
222
+ finish :
223
+ name : Finish Coverall
224
+ needs : predis-stack
225
+ if : ${{ always() }}
226
+ runs-on : ubuntu-latest
227
+ steps :
228
+ - name : Coveralls Finished
229
+ uses : coverallsapp/github-action@v2
230
+ with :
231
+ parallel-finished : true
232
+ carryforward : " Predis-Relay,Stack"
0 commit comments