-
-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (52 loc) · 1.86 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
name: Run Tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
php-tests:
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
php: [8.2]
laravel: [10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
os: [ubuntu-latest]
include:
- laravel: 10.*
- laravel: 11.*
- os: windows-latest
php: 8.2
laravel: 10.*
stability: prefer-stable
- os: windows-latest
php: 8.2
laravel: 11.*
stability: prefer-stable
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Set PHP 7.4 Mockery
run: composer require "mockery/mockery >=1.2.3" --no-interaction --no-update
if: matrix.php >= 7.4 && matrix.php <8.0
- name: Set PHP 8 Mockery
run: composer require "mockery/mockery >=1.3.3" --no-interaction --no-update
if: matrix.php >= 8.0
- name: Set PHP 8.1 Testbench
run: composer require "orchestra/testbench ^6.22.0" --no-interaction --no-update
if: matrix.laravel == '8.*' && matrix.php >= 8.1
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit