File tree 3 files changed +37
-20
lines changed
3 files changed +37
-20
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 : ubuntu-latest
10
+ strategy :
11
+ matrix :
12
+ php :
13
+ - 5.6
14
+ - 5.3
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+ - name : Setup PHP
18
+ uses : shivammathur/setup-php@v2
19
+ with :
20
+ php-version : ${{ matrix.php }}
21
+ coverage : xdebug
22
+ - run : composer install
23
+ - run : vendor/bin/phpunit --coverage-text
24
+
25
+ PHPUnit-hhvm :
26
+ name : PHPUnit (HHVM)
27
+ runs-on : ubuntu-18.04
28
+ steps :
29
+ - uses : actions/checkout@v2
30
+ - uses : azjezz/setup-hhvm@v1
31
+ with :
32
+ version : lts-3.30
33
+ - run : hhvm $(which composer) install
34
+ - run : hhvm vendor/bin/phpunit
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # clue/json-stream [ ![ Build Status] ( https://travis-ci.org/clue/php-json-stream.svg?branch=master )] ( https://travis-ci.org/clue/php-json-stream )
1
+ # clue/json-stream
2
+
3
+ [ ![ CI status] ( https://github.com/clue/php-json-stream/workflows/CI/badge.svg )] ( https://github.com/clue/php-json-stream/actions )
2
4
3
5
A really simple and lightweight, incremental parser for [ JSON streaming] ( https://en.wikipedia.org/wiki/JSON_Streaming )
4
6
(concatenated JSON and [ line delimited JSON] ( https://en.wikipedia.org/wiki/Line_Delimited_JSON ) ), in PHP.
You can’t perform that action at this time.
0 commit comments