Skip to content

Commit 322f256

Browse files
committed
fix action
1 parent 238a7a4 commit 322f256

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on: [push]
55
jobs:
66
run:
77
runs-on: [ubuntu-latest]
8-
strategy:
8+
strategy:
99
matrix:
1010
php-versions: ['7.1', '7.2', '7.3']
11-
name: Unit tests on PHP ${{ matrix.php-versions }}
11+
name: Tests - ${{ matrix.php-versions }}
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v1
@@ -19,6 +19,9 @@ jobs:
1919
php-version: ${{ matrix.php-versions }}
2020
coverage: xdebug
2121

22+
- name: Install deps
23+
run: composer install
24+
2225
- name: Run tests
2326
run: vendor/bin/phpunit -c phpunit.xml --coverage-clover=coverage.xml
2427

0 commit comments

Comments
 (0)