blob: 8b31e2363f47a8195df16a5f305d720fbbc28d09 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001name: Test
2
3on:
4 push:
5 pull_request:
6
7jobs:
8 build:
9 runs-on: ubuntu-latest
10
11 strategy:
12 matrix:
13 php-version: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
14
15 steps:
16 - uses: actions/checkout@v2
17
18 - uses: shivammathur/setup-php@v2
19 with:
20 php-version: ${{ matrix.php-version }}
21 tools: composer
22 coverage: xdebug
23
24 - uses: ramsey/composer-install@v1
25
26 - run: composer lint
27 - run: composer test