-
-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (61 loc) · 1.77 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Run tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 7.3, 7.4 ]
laravel: [ 8.*, 7.*, 6.*, 5.8.* ]
stability: [ prefer-stable ]
include:
- laravel: 9.*
php: 8.0
stability: prefer-stable
- laravel: 8.*
php: 8.0
stability: prefer-stable
- laravel: 7.*
php: 8.0
stability: prefer-stable
- laravel: 6.*
php: 8.0
stability: prefer-stable
- laravel: 10.*
php: 8.1
stability: prefer-stable
- laravel: 9.*
php: 8.1
stability: prefer-stable
- laravel: 8.*
php: 8.1
stability: prefer-stable
- laravel: 10.*
php: 8.2
stability: prefer-stable
- laravel: 11.*
php: 8.3
stability: prefer-stable
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, redis, memcached
tools: composer:v2
coverage: pcov
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
- name: Check code style
run: vendor/bin/phpcs
- name: Execute tests
run: vendor/bin/phpunit