We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bb0efa commit 289472cCopy full SHA for 289472c
.github/workflows/phpunit.yml
@@ -38,7 +38,7 @@ jobs:
38
steps:
39
- uses: actions/checkout@v3
40
- run: composer install
41
- - run: ./vendor/bin/phpunit
+ - run: ./vendor/bin/phpunit --stderr
42
43
Documentation:
44
runs-on: 'ubuntu-latest'
tests/BaseCacheTest.php
@@ -21,8 +21,8 @@ protected function tearDown(): void
21
22
public function CachePoolProvider()
23
{
24
- $memcachedServer = ['memcached-container:11211'];
25
- $redisCacheServer = 'redis-container:6379';
+ $memcachedServer = ['memcached:11211'];
+ $redisCacheServer = 'redis:6379';
26
$redisPassword = '';
27
28
return [
0 commit comments