File tree Expand file tree Collapse file tree 3 files changed +38
-46
lines changed Expand file tree Collapse file tree 3 files changed +38
-46
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ pull_request :
4
+
5
+ jobs :
6
+ phpunit :
7
+ strategy :
8
+ matrix :
9
+ include :
10
+ - php : 7.0
11
+ suite : PHPCache
12
+ - php : 7.0
13
+ suite : Symfony
14
+ - php : 7.0
15
+ suite : Laravel
16
+ # - php: 7.0
17
+ # suite: Stash
18
+ - php : 7.1
19
+ suite : PHPCache
20
+ # - php: 7.2
21
+ # suite: PHPCache
22
+ runs-on : ubuntu-latest
23
+ services :
24
+ redis :
25
+ image : redis:6.2.8
26
+ ports :
27
+ - 6379:6379
28
+ steps :
29
+ - uses : actions/checkout@v4
30
+ - uses : shivammathur/setup-php@v2
31
+ with :
32
+ php-version : ${{ matrix.php }}
33
+ - run : |
34
+ composer install --no-plugins --prefer-source
35
+ - run : ./vendor/bin/simple-phpunit --testsuite ${{ matrix.suite }}
36
+ env :
37
+ SYMFONY_PHPUNIT_VERSION : ' 5.7'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 28
28
"require-dev" : {
29
29
"cache/cache" : " ^1.0" ,
30
30
"symfony/cache" : " ^3.4.31|^4.3.4|^5.0" ,
31
- "symfony/phpunit-bridge" : " ^5.1" ,
31
+ "symfony/phpunit-bridge" : " ^5.1,<5.3 " ,
32
32
"illuminate/cache" : " ^5.4|^5.5|^5.6" ,
33
33
"tedivm/stash" : " ^0.14" ,
34
34
"mockery/mockery" : " ^1.0"
You can’t perform that action at this time.
0 commit comments