File tree Expand file tree Collapse file tree 3 files changed +44
-19
lines changed
Expand file tree Collapse file tree 3 files changed +44
-19
lines changed Original file line number Diff line number Diff line change 11* text =auto
22
33/tests export-ignore
4+ .github export-ignore
45.gitattributes export-ignore
56.gitignore export-ignore
67.php_cs export-ignore
7- .travis.yml export-ignore
88phpunit.xml.dist export-ignore
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [master]
6+ pull_request :
7+
8+ jobs :
9+ test :
10+ runs-on : ubuntu-latest
11+
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ php-version :
16+ - ' 7.1'
17+ - ' 7.2'
18+ - ' 7.3'
19+ - ' 7.4'
20+ - ' 8.0'
21+ - ' 8.1'
22+ - ' 8.2'
23+ - ' 8.3'
24+ - ' 8.4'
25+ - ' 8.5'
26+
27+ name : PHP ${{ matrix.php-version }}
28+
29+ steps :
30+ - name : Checkout code
31+ uses : actions/checkout@v4
32+
33+ - name : Setup PHP
34+ uses : shivammathur/setup-php@v2
35+ with :
36+ php-version : ${{ matrix.php-version }}
37+ coverage : none
38+
39+ - name : Install dependencies
40+ run : composer install --prefer-dist --no-progress --no-interaction
41+
42+ - name : Run tests
43+ run : composer test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments