-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (35 loc) · 1.12 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: tests
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
phpunit:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2', '8.3']
glide: ['1.*', '2.*']
name: P${{ matrix.php }} G${{ matrix.glide }}
steps:
- uses: actions/checkout@v2
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.glide }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.php }}-${{ matrix.glide }}-composer-
- name: Install dependencies
run: |
composer require "league/glide:${{ matrix.glide }}" --no-interaction --no-update
composer install --prefer-dist --no-interaction --no-plugins
- name: Run test suite
run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text