We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b0fb318 + 8153948 commit 0bd6ae5Copy full SHA for 0bd6ae5
.github/workflows/ci.yml
@@ -0,0 +1,34 @@
1
+name: CI Tests
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ PHPUnit:
6
+ runs-on: ${{ matrix.os }}
7
+ strategy:
8
+ matrix:
9
+ os:
10
+ - ubuntu-latest
11
+ php:
12
+ - 5.4
13
+ - 5.5
14
+ - 5.6
15
+ - 7.0
16
+ - 7.1
17
+ - 7.2
18
+ - 7.3
19
+ - 7.4
20
+ - 8.0
21
22
+ steps:
23
+ - uses: actions/checkout@v2
24
25
+ - name: Setup PHP
26
+ uses: shivammathur/setup-php@v2
27
+ with:
28
+ php-version: ${{ matrix.php }}
29
30
+ - name: Install dependencies
31
+ run: composer install
32
33
+ - name: Run PHPUnit
34
+ run: vendor/bin/phpunit
.travis.yml
0 commit comments