We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eee4e76 commit 6a9bb5bCopy full SHA for 6a9bb5b
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ PHPUnit:
9
+ name: PHPUnit (PHP ${{ matrix.php }} on ${{ matrix.os }})
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ matrix:
13
+ os:
14
+ - ubuntu-20.04
15
+ - windows-2019
16
+ php:
17
+ - 8.1
18
+ - 8.0
19
+ - 7.4
20
+ - 7.3
21
+ - 7.2
22
+ steps:
23
+ - uses: actions/checkout@v2
24
+ - uses: shivammathur/setup-php@v2
25
+ with:
26
+ php-version: ${{ matrix.php }}
27
+ coverage: xdebug
28
+ - run: composer install
29
+ - run: vendor/bin/phpunit --coverage-text
.travis.yml
0 commit comments