-
Notifications
You must be signed in to change notification settings - Fork 61
66 lines (57 loc) · 1.51 KB
/
php.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
65
66
name: PHP
on:
- push
- pull_request
jobs:
run:
runs-on: ubuntu-latest
strategy:
max-parallel: 15
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
laravel: ['6.*', '7.*', '8.*', '9.*', '10.*', '11.*']
exclude:
- laravel: 6.*
php: '8.0'
- laravel: 6.*
php: '8.1'
- laravel: 6.*
php: '8.2'
- laravel: 7.*
php: '8.0'
- laravel: 7.*
php: '8.1'
- laravel: 7.*
php: '8.2'
- laravel: 8.*
php: '8.2'
- laravel: 9.*
php: '7.4'
- laravel: 10.*
php: '7.4'
- laravel: 10.*
php: '8.0'
- laravel: 11.*
php: '7.4'
- laravel: 11.*
php: '8.0'
- laravel: 11.*
php: '8.1'
name: PHP ${{ matrix.php }} on Laravel ${{ matrix.laravel }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, xdebug
coverage: xdebug
- name: Install dependencies
run: |
composer require --no-update --no-interaction "illuminate/notifications:${{ matrix.laravel }}"
composer update --no-interaction --prefer-dist --no-suggest
- name: Lint composer.json
run: composer validate
- name: Run Tests
run: composer test:ci