File tree Expand file tree Collapse file tree 4 files changed +30
-25
lines changed Expand file tree Collapse file tree 4 files changed +30
-25
lines changed Original file line number Diff line number Diff line change 1
1
/.gitattributes export-ignore
2
+ /.github /workflows / export-ignore
2
3
/.gitignore export-ignore
3
- /.travis.yml export-ignore
4
4
/phpunit.xml.dist export-ignore
5
5
/phpunit.xml.legacy export-ignore
6
6
/tests export-ignore
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ PHPUnit :
9
+ name : PHPUnit (PHP ${{ matrix.php }})
10
+ runs-on : ubuntu-20.04
11
+ strategy :
12
+ matrix :
13
+ php :
14
+ - 7.4
15
+ - 7.3
16
+ - 7.2
17
+ - 7.1
18
+ steps :
19
+ - uses : actions/checkout@v2
20
+ - uses : shivammathur/setup-php@v2
21
+ with :
22
+ php-version : ${{ matrix.php }}
23
+ coverage : xdebug
24
+ - run : composer install
25
+ - run : vendor/bin/phpunit --coverage-text
26
+ if : ${{ matrix.php >= 7.3 }}
27
+ - run : vendor/bin/phpunit --coverage-text -c phpunit.xml.legacy
28
+ if : ${{ matrix.php < 7.3 }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
A lightweight implementation of
5
5
[ CommonJS Promises/A] ( http://wiki.commonjs.org/wiki/Promises/A ) for PHP.
6
6
7
- [ ![ Build Status] ( https://travis-ci.org/reactphp/promise.svg?branch=master )] ( http://travis-ci.org/reactphp/promise )
8
- [ ![ Coverage Status] ( https://coveralls.io/repos/github/reactphp/promise/badge.svg?branch=master )] ( https://coveralls.io/github/reactphp/promise?branch=master )
7
+ [ ![ CI status] ( https://github.com/reactphp/promise/workflows/CI/badge.svg )] ( https://github.com/reactphp/promise/actions )
9
8
10
9
> The master branch contains the code for the upcoming 3.0 release.
11
10
> For the code of the current stable 2.x release, checkout the
You can’t perform that action at this time.
0 commit comments