We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 238a7a4 commit 322f256Copy full SHA for 322f256
1 file changed
.github/workflows/main.yml
@@ -5,10 +5,10 @@ on: [push]
5
jobs:
6
run:
7
runs-on: [ubuntu-latest]
8
- strategy:
+ strategy:
9
matrix:
10
php-versions: ['7.1', '7.2', '7.3']
11
- name: Unit tests on PHP ${{ matrix.php-versions }}
+ name: Tests - ${{ matrix.php-versions }}
12
steps:
13
- name: Checkout
14
uses: actions/checkout@v1
@@ -19,6 +19,9 @@ jobs:
19
php-version: ${{ matrix.php-versions }}
20
coverage: xdebug
21
22
+ - name: Install deps
23
+ run: composer install
24
+
25
- name: Run tests
26
run: vendor/bin/phpunit -c phpunit.xml --coverage-clover=coverage.xml
27
0 commit comments