-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (57 loc) · 1.63 KB
/
testing.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Testing
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
laravel: [10.*, 9.*, 8.*, 7.*, 6.*, 5.7.*, 5.6.*, 5.5.*]
dependency-version: [prefer-stable]
os: [ubuntu-latest]
include:
- laravel: 10.*
testbench: 8.*
php: 8.1
- laravel: 9.*
testbench: 7.*
php: 8.0.2
- laravel: 8.*
testbench: 6.*
php: 8.0
- laravel: 7.*
testbench: 5.*
php: 7.2.5
- laravel: 6.*
testbench: 4.*
php: 7.2.5
- laravel: 5.7.*
testbench: 3.7.*
php: 7.1.3
- laravel: 5.6.*
testbench: 3.6.*
php: 7.1.3
- laravel: 5.5.*
testbench: 3.5.*
php: 7.0
fail-fast: false
steps:
- name: Setup code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, dom, fileinfo, mysql, libxml, xml, xmlwriter, dom, tokenizer, filter, json, phar, pcre, openssl, pdo, intl, curl
coverage: none
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" predis/predis --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
- name: Execute tests via PHPUnit
run: vendor/bin/phpunit