File tree Expand file tree Collapse file tree 3 files changed +39
-39
lines changed Expand file tree Collapse file tree 3 files changed +39
-39
lines changed 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
+ runs-on : ${{ matrix.os }}
10
+ strategy :
11
+ matrix :
12
+ os :
13
+ - windows-latest
14
+ - ubuntu-latest
15
+ php :
16
+ - 5.3
17
+ - 5.4
18
+ - 5.5
19
+ - 5.6
20
+ - 7.0
21
+ - 7.1
22
+ - 7.2
23
+ - 7.3
24
+ - 7.4
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+ - name : Setup PHP
28
+ uses : shivammathur/setup-php@v2
29
+ with :
30
+ php-version : ${{ matrix.php }}
31
+ coverage : none
32
+ - run : composer install
33
+ - run : vendor/bin/phpunit --coverage-text
34
+ if : ${{ matrix.php >= 7.3 }}
35
+ - run : vendor/bin/phpunit --coverage-text -c phpunit.xml.legacy
36
+ if : ${{ matrix.php < 7.3 }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # clue/socket-raw [ ![ Build Status] ( https://travis-ci.org/clue/php-socket-raw.svg?branch=master )] ( https://travis-ci.org/clue/php-socket-raw )
1
+ # clue/socket-raw
2
+
3
+ [ ![ CI status] ( https://github.com/clue/php-socket-raw/workflows/CI/badge.svg )] ( https://github.com/clue/php-socket-raw/actions )
2
4
3
5
Simple and lightweight OOP wrapper for PHP's low-level sockets extension (ext-sockets)
4
6
You can’t perform that action at this time.
0 commit comments